Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
4417be8f
Commit
4417be8f
authored
Aug 16, 2010
by
Mattias Jonsson
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
eb2e8df9
e84ced1a
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
17 additions
and
17 deletions
+17
-17
libmysqld/CMakeLists.txt
libmysqld/CMakeLists.txt
+2
-2
libmysqld/Makefile.am
libmysqld/Makefile.am
+2
-2
sql/CMakeLists.txt
sql/CMakeLists.txt
+2
-2
sql/Makefile.am
sql/Makefile.am
+4
-4
sql/sql_admin.cc
sql/sql_admin.cc
+1
-1
sql/sql_admin.h
sql/sql_admin.h
+0
-0
sql/sql_alter.cc
sql/sql_alter.cc
+1
-1
sql/sql_alter.h
sql/sql_alter.h
+0
-0
sql/sql_lex.h
sql/sql_lex.h
+1
-1
sql/sql_parse.cc
sql/sql_parse.cc
+1
-1
sql/sql_partition_admin.cc
sql/sql_partition_admin.cc
+1
-1
sql/sql_yacc.yy
sql/sql_yacc.yy
+2
-2
No files found.
libmysqld/CMakeLists.txt
View file @
4417be8f
...
...
@@ -64,7 +64,7 @@ SET(SQL_EMBEDDED_SOURCES emb_qcache.cc libmysqld.c lib_sql.cc
../sql/sql_db.cc ../sql/sql_delete.cc ../sql/sql_derived.cc
../sql/sql_do.cc ../sql/sql_error.cc ../sql/sql_handler.cc
../sql/sql_help.cc ../sql/sql_insert.cc ../sql/datadict.cc
../sql/sql_
table_maintenance
.cc ../sql/sql_truncate.cc
../sql/sql_
admin
.cc ../sql/sql_truncate.cc
../sql/sql_lex.cc ../sql/keycaches.cc
../sql/sql_list.cc ../sql/sql_load.cc ../sql/sql_locale.cc
../sql/sql_binlog.cc ../sql/sql_manager.cc
...
...
@@ -80,7 +80,7 @@ SET(SQL_EMBEDDED_SOURCES emb_qcache.cc libmysqld.c lib_sql.cc
../sql/sql_time.cc ../sql/tztime.cc ../sql/uniques.cc ../sql/unireg.cc
../sql/partition_info.cc ../sql/sql_connect.cc
../sql/scheduler.cc ../sql/sql_audit.cc
../sql/sql_alter
_table
.cc ../sql/sql_partition_admin.cc
../sql/sql_alter.cc ../sql/sql_partition_admin.cc
../sql/event_parse_data.cc
../sql/sql_signal.cc ../sql/rpl_handler.cc
../sql/rpl_utility.cc
...
...
libmysqld/Makefile.am
View file @
4417be8f
...
...
@@ -63,7 +63,7 @@ sqlsources = derror.cc field.cc field_conv.cc strfunc.cc filesort.cc \
protocol.cc net_serv.cc opt_range.cc
\
opt_sum.cc procedure.cc records.cc sql_acl.cc
\
sql_load.cc discover.cc sql_locale.cc
\
sql_profile.cc sql_
table_maintenance
.cc sql_truncate.cc datadict.cc
\
sql_profile.cc sql_
admin
.cc sql_truncate.cc datadict.cc
\
sql_analyse.cc sql_base.cc sql_cache.cc sql_class.cc
\
sql_crypt.cc sql_db.cc sql_delete.cc sql_error.cc sql_insert.cc
\
sql_lex.cc sql_list.cc sql_manager.cc
\
...
...
@@ -78,7 +78,7 @@ sqlsources = derror.cc field.cc field_conv.cc strfunc.cc filesort.cc \
parse_file.cc sql_view.cc sql_trigger.cc my_decimal.cc
\
rpl_filter.cc sql_partition.cc sql_builtin.cc sql_plugin.cc
\
debug_sync.cc sql_tablespace.cc transaction.cc
\
rpl_injector.cc my_user.c partition_info.cc sql_alter
_table
.cc
\
rpl_injector.cc my_user.c partition_info.cc sql_alter.cc
\
sql_servers.cc event_parse_data.cc sql_signal.cc
\
rpl_handler.cc mdl.cc keycaches.cc sql_audit.cc
\
sql_partition_admin.cc
...
...
sql/CMakeLists.txt
View file @
4417be8f
...
...
@@ -71,8 +71,8 @@ SET (SQL_SOURCE
partition_info.cc rpl_utility.cc rpl_injector.cc sql_locale.cc
rpl_rli.cc rpl_mi.cc sql_servers.cc sql_audit.cc
sql_connect.cc scheduler.cc sql_partition_admin.cc
sql_profile.cc event_parse_data.cc sql_alter
_table
.cc
sql_signal.cc rpl_handler.cc mdl.cc sql_
table_maintenance
.cc
sql_profile.cc event_parse_data.cc sql_alter.cc
sql_signal.cc rpl_handler.cc mdl.cc sql_
admin
.cc
transaction.cc sys_vars.cc sql_truncate.cc datadict.cc
${
GEN_SOURCES
}
${
MYSYS_LIBWRAP_SOURCE
}
)
...
...
sql/Makefile.am
View file @
4417be8f
...
...
@@ -122,11 +122,11 @@ noinst_HEADERS = item.h item_func.h item_sum.h item_cmpfunc.h \
sql_plugin.h authors.h event_parse_data.h
\
event_data_objects.h event_scheduler.h
\
sql_partition.h partition_info.h partition_element.h
\
sql_audit.h sql_alter
_table
.h sql_partition_admin.h
\
sql_audit.h sql_alter.h sql_partition_admin.h
\
contributors.h sql_servers.h sql_signal.h records.h
\
sql_prepare.h rpl_handler.h replication.h mdl.h
\
sql_plist.h transaction.h sys_vars.h sql_truncate.h
\
sql_
table_maintenance
.h datadict.h
sql_
admin
.h datadict.h
mysqld_SOURCES
=
sql_lex.cc sql_handler.cc sql_partition.cc
\
item.cc item_sum.cc item_buff.cc item_func.cc
\
...
...
@@ -143,7 +143,7 @@ mysqld_SOURCES = sql_lex.cc sql_handler.cc sql_partition.cc \
datadict.cc sql_profile.cc
\
sql_prepare.cc sql_error.cc sql_locale.cc
\
sql_update.cc sql_delete.cc uniques.cc sql_do.cc
\
procedure.cc sql_test.cc sql_
table_maintenance
.cc
\
procedure.cc sql_test.cc sql_
admin
.cc
\
sql_truncate.cc
\
log.cc init.cc derror.cc sql_acl.cc
\
unireg.cc des_key_file.cc
\
...
...
@@ -172,7 +172,7 @@ mysqld_SOURCES = sql_lex.cc sql_handler.cc sql_partition.cc \
sql_builtin.cc sql_tablespace.cc partition_info.cc
\
sql_servers.cc event_parse_data.cc sql_signal.cc
\
rpl_handler.cc mdl.cc transaction.cc sql_audit.cc
\
sql_alter
_table
.cc sql_partition_admin.cc sha2.cc
sql_alter.cc sql_partition_admin.cc sha2.cc
nodist_mysqld_SOURCES
=
mini_client_errors.c pack.c client.c my_time.c my_user.c
...
...
sql/sql_
table_maintenance
.cc
→
sql/sql_
admin
.cc
View file @
4417be8f
...
...
@@ -27,7 +27,7 @@
#include "sql_acl.h" // *_ACL
#include "sp.h" // Sroutine_hash_entry
#include "sql_parse.h" // check_table_access
#include "sql_
table_maintenance
.h"
#include "sql_
admin
.h"
static
int
send_check_errmsg
(
THD
*
thd
,
TABLE_LIST
*
table
,
const
char
*
operator_name
,
const
char
*
errmsg
)
...
...
sql/sql_
table_maintenance
.h
→
sql/sql_
admin
.h
View file @
4417be8f
File moved
sql/sql_alter
_table
.cc
→
sql/sql_alter.cc
View file @
4417be8f
...
...
@@ -17,7 +17,7 @@
// check_merge_table_access
#include "sql_table.h" // mysql_alter_table,
// mysql_exchange_partition
#include "sql_alter
_table
.h"
#include "sql_alter.h"
bool
Alter_table_statement
::
execute
(
THD
*
thd
)
{
...
...
sql/sql_alter
_table
.h
→
sql/sql_alter.h
View file @
4417be8f
File moved
sql/sql_lex.h
View file @
4417be8f
...
...
@@ -923,7 +923,7 @@ enum enum_alter_table_change_level
/**
Temporary hack to enable a class bound forward declaration
of the enum_alter_table_change_level enumeration. To be
removed once Alter_info is moved to the sql_alter
_table
.h
removed once Alter_info is moved to the sql_alter.h
header.
*/
class
Alter_table_change_level
...
...
sql/sql_parse.cc
View file @
4417be8f
...
...
@@ -50,7 +50,7 @@
// mysql_backup_table,
// mysql_restore_table
#include "sql_truncate.h" // mysql_truncate_table
#include "sql_
table_maintenance.h"
// mysql_assign_to_keycache
#include "sql_
admin.h"
// mysql_assign_to_keycache
#include "sql_connect.h" // check_user,
// decrease_user_connections,
// thd_init_client_charset, check_mqh,
...
...
sql/sql_partition_admin.cc
View file @
4417be8f
...
...
@@ -18,7 +18,7 @@
#include "sql_lex.h" // Sql_statement
#include "sql_truncate.h" // mysql_truncate_table,
// Truncate_statement
#include "sql_
table_maintenance.h"
// Analyze/Check/.._table_statement
#include "sql_
admin.h"
// Analyze/Check/.._table_statement
#include "sql_partition_admin.h" // Alter_table_*_partition
#ifndef WITH_PARTITION_STORAGE_ENGINE
...
...
sql/sql_yacc.yy
View file @
4417be8f
...
...
@@ -51,9 +51,9 @@
#include "sp_pcontext.h"
#include "sp_rcontext.h"
#include "sp.h"
#include "sql_alter
_table.h"
// Alter_table*_statement
#include "sql_alter
.h"
// Alter_table*_statement
#include "sql_truncate.h" // Truncate_statement
#include "sql_
table_maintenance.h"
// Analyze/Check..._table_stmt
#include "sql_
admin.h"
// Analyze/Check..._table_stmt
#include "sql_partition_admin.h" // Alter_table_*_partition_stmt
#include "sql_signal.h"
#include "event_parse_data.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment