mariadb/sql
Michael Widenius 2e100cc5a4 Fixes for parallel slave:
- Made slaves temporary table multi-thread slave safe by adding mutex around save_temporary_table usage.
  - rli->save_temporary_tables is the active list of all used temporary tables
  - This is copied to THD->temporary_tables when temporary tables are opened and updated when temporary tables are closed
  - Added THD->lock_temporary_tables() and THD->unlock_temporary_tables() to simplify this.
- Relay_log_info->sql_thd renamed to Relay_log_info->sql_driver_thd to avoid wrong usage for merged code.
- Added is_part_of_group() to mark functions that are part of the next function. This replaces setting IN_STMT when events are executed.
- Added is_begin(), is_commit() and is_rollback() functions to Query_log_event to simplify code.
- If slave_skip_counter is set run things in single threaded mode. This simplifies code for skipping events.
- Updating state of relay log (IN_STMT and IN_TRANSACTION) is moved to one single function: update_state_of_relay_log()
  We can't use OPTION_BEGIN to check for the state anymore as the sql_driver and sql execution threads may be different.
  Clear IN_STMT and IN_TRANSACTION in init_relay_log_pos() and Relay_log_info::cleanup_context() to ensure the flags doesn't survive slave restarts
  is_in_group() is now independent of state of executed transaction.
- Reset thd->transaction.all.modified_non_trans_table() if we did set it for single table row events.
  This was mainly for keeping the flag as documented.
- Changed slave_open_temp_tables to uint32 to be able to use atomic operators on it.
- Relay_log_info::sleep_lock -> rpl_group_info::sleep_lock
- Relay_log_info::sleep_cond -> rpl_group_info::sleep_cond
- Changed some functions to take rpl_group_info instead of Relay_log_info to make them multi-slave safe and to simplify usage
  - do_shall_skip()
  - continue_group()
  - sql_slave_killed()
  - next_event()
- Simplifed arguments to io_salve_killed(), check_io_slave_killed() and sql_slave_killed(); No reason to supply THD as this is part of the given structure.
- set_thd_in_use_temporary_tables() removed as in_use is set on usage
- Added information to thd_proc_info() which thread is waiting for slave mutex to exit.
- In open_table() reuse code from find_temporary_table()

Other things:
- More DBUG statements
- Fixed the rpl_incident.test can be run with --debug
- More comments
- Disabled not used function rpl_connect_master()

mysql-test/suite/perfschema/r/all_instances.result:
  Moved sleep_lock and sleep_cond to rpl_group_info
mysql-test/suite/rpl/r/rpl_incident.result:
  Updated result
mysql-test/suite/rpl/t/rpl_incident-master.opt:
  Not needed anymore
mysql-test/suite/rpl/t/rpl_incident.test:
  Fixed that test can be run with --debug
sql/handler.cc:
  More DBUG_PRINT
sql/log.cc:
  More comments
sql/log_event.cc:
  Added DBUG statements
  do_shall_skip(), continue_group() now takes rpl_group_info param
  Use is_begin(), is_commit() and is_rollback() functions instead of inspecting query string
  We don't have set slaves temporary tables 'in_use' as this is now done when tables are opened.
  Removed IN_STMT flag setting. This is now done in update_state_of_relay_log()
  Use IN_TRANSACTION flag to test state of relay log.
  In rows_event_stmt_cleanup() reset thd->transaction.all.modified_non_trans_table if we had set this before.
sql/log_event.h:
  do_shall_skip(), continue_group() now takes rpl_group_info param
  Added is_part_of_group() to mark events that are part of the next event. This replaces setting IN_STMT when events are executed.
  Added is_begin(), is_commit() and is_rollback() functions to Query_log_event to simplify code.
sql/log_event_old.cc:
  Removed IN_STMT flag setting. This is now done in update_state_of_relay_log()
  do_shall_skip(), continue_group() now takes rpl_group_info param
sql/log_event_old.h:
  Added is_part_of_group() to mark events that are part of the next event.
  do_shall_skip(), continue_group() now takes rpl_group_info param
sql/mysqld.cc:
  Changed slave_open_temp_tables to uint32 to be able to use atomic operators on it.
  Relay_log_info::sleep_lock -> Rpl_group_info::sleep_lock
  Relay_log_info::sleep_cond -> Rpl_group_info::sleep_cond
sql/mysqld.h:
  Updated types and names
sql/rpl_gtid.cc:
  More DBUG
sql/rpl_parallel.cc:
  Updated TODO section
  Set thd for event that is execution
  Use new  is_begin(), is_commit() and is_rollback() functions.
  More comments
sql/rpl_rli.cc:
  sql_thd -> sql_driver_thd
  Relay_log_info::sleep_lock -> rpl_group_info::sleep_lock
  Relay_log_info::sleep_cond -> rpl_group_info::sleep_cond
  Clear IN_STMT and IN_TRANSACTION in init_relay_log_pos() and Relay_log_info::cleanup_context() to ensure the flags doesn't survive slave restarts.
  Reset table->in_use for temporary tables as the table may have been used by another THD.
  Use IN_TRANSACTION instead of OPTION_BEGIN to check state of relay log.
  Removed IN_STMT flag setting. This is now done in update_state_of_relay_log()
sql/rpl_rli.h:
  Changed relay log state flags to bit masks instead of bit positions (most other code we have uses bit masks)
  Added IN_TRANSACTION to mark if we are in a BEGIN ... COMMIT section.
  save_temporary_tables is now thread safe
  Relay_log_info::sleep_lock -> rpl_group_info::sleep_lock
  Relay_log_info::sleep_cond -> rpl_group_info::sleep_cond
  Relay_log_info->sql_thd renamed to Relay_log_info->sql_driver_thd to avoid wrong usage for merged code
  is_in_group() is now independent of state of executed transaction.
sql/slave.cc:
  Simplifed arguments to io_salve_killed(), sql_slave_killed() and check_io_slave_killed(); No reason to supply THD as this is part of the given structure.
  set_thd_in_use_temporary_tables() removed as in_use is set on usage in sql_base.cc
  sql_thd -> sql_driver_thd
  More DBUG
  Added update_state_of_relay_log() which will calculate the IN_STMT and IN_TRANSACTION state of the relay log after the current element is executed.
  If slave_skip_counter is set run things in single threaded mode.
  Simplifed arguments to io_salve_killed(), check_io_slave_killed() and sql_slave_killed(); No reason to supply THD as this is part of the given structure.
  Added information to thd_proc_info() which thread is waiting for slave mutex to exit.
  Disabled not used function rpl_connect_master()
  Updated argument to next_event()
sql/sql_base.cc:
  Added mutex around usage of slave's temporary tables. The active list is always kept up to date in sql->rgi_slave->save_temporary_tables.
  Clear thd->temporary_tables after query (safety)
  More DBUG
  When using temporary table, set table->in_use to current thd as the THD may be different for slave threads.
  Some code is ifdef:ed with REMOVE_AFTER_MERGE_WITH_10 as the given code in 10.0 is not yet in this tree.
  In open_table() reuse code from find_temporary_table()
sql/sql_binlog.cc:
  rli->sql_thd -> rli->sql_driver_thd
  Remove duplicate setting of rgi->rli
sql/sql_class.cc:
  Added helper functions rgi_lock_temporary_tables() and rgi_unlock_temporary_tables()
  Would have been nicer to have these inline, but there was no easy way to do that
sql/sql_class.h:
  Added functions to protect slaves temporary tables
sql/sql_parse.cc:
  Added DBUG_PRINT
sql/transaction.cc:
  Added comment
2013-10-14 00:24:05 +03:00
..
examples merge with 5.3 2011-10-19 21:45:18 +02:00
share MDEV-4506: Parallel replication of group-committed transactions: Intermediate commit 2013-06-24 10:50:25 +02:00
add_errmsg
authors.h 5.3 merge 2012-01-13 15:50:02 +01:00
bounded_queue.h MDEV-415: Back-port of the WL task #1393 from the mysql-5.6 code line. 2012-09-01 14:21:59 -07:00
client_settings.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
CMakeLists.txt MDEV-4506: Parallel replication of group-committed transactions: Intermediate commit 2013-06-24 10:50:25 +02:00
contributors.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
create_options.cc MDEV-4022 table attributes with sysvar as a default value 2013-04-09 23:27:24 +02:00
create_options.h MDEV-4022 table attributes with sysvar as a default value 2013-04-09 23:27:24 +02:00
custom_conf.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
datadict.cc CREATE TABLE and frm-less discovering engines. 2013-04-09 15:57:09 +02:00
datadict.h remove dd_frm_type(), dd_frm_storage_engine(), dd_check_storage_engine_flag() 2013-04-09 15:50:30 +02:00
db.opt Bug#16062056 REMOVE THE "DUMMY.BAK" FILE FROM THE TEST DATABASE, AND ADD DB.OPT 2013-02-25 10:42:40 +01:00
debug_sync.cc MDEV-4011 Added per thread memory counting and usage 2013-01-23 16:16:14 +01:00
debug_sync.h debug_sync is now a service, available to dynamically loaded plugins. 2012-03-28 19:26:00 +02:00
derror.cc Better error message when using --language or --log-bin 2012-09-07 17:05:17 +03:00
derror.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
des_key_file.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
des_key_file.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
discover.cc error messages: name the storage engine explicitly, 2013-04-09 23:27:07 +02:00
discover.h post-review comments and other minor edits 2013-04-09 16:20:59 +02:00
event_data_objects.cc cleanup: use MYF() for mysys flags 2013-01-23 16:18:09 +01:00
event_data_objects.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
event_db_repository.cc 5.5 merge 2013-06-06 17:51:28 +02:00
event_db_repository.h 5.3 merge 2012-01-13 15:50:02 +01:00
event_parse_data.cc MDEV-500: Session variable for server_id 2012-10-23 12:46:29 +02:00
event_parse_data.h 5.3 merge 2012-01-13 15:50:02 +01:00
event_queue.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
event_queue.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
event_scheduler.cc Speed up connection time: 2013-03-25 11:13:42 +02:00
event_scheduler.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
events.cc MDEV-4011 Added per thread memory counting and usage 2013-01-23 16:16:14 +01:00
events.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
field.cc Added comments. 2013-04-15 22:43:07 -07:00
field.h Added comments. 2013-04-15 22:43:07 -07:00
field_conv.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
filesort.cc 5.5 merge 2013-03-27 23:41:02 +01:00
filesort.h MDEV-415: Back-port of the WL task #1393 from the mysql-5.6 code line. 2012-09-01 14:21:59 -07:00
filesort_utils.cc MDEV-4011 Added per thread memory counting and usage 2013-01-23 16:16:14 +01:00
filesort_utils.h MDEV-415: Back-port of the WL task #1393 from the mysql-5.6 code line. 2012-09-01 14:21:59 -07:00
gcalc_slicescan.cc bug #977021 ST_BUFFER fails with the negative D. 2012-04-29 18:08:11 +05:00
gcalc_slicescan.h bug #901655 ST_BUFFER asserts with a coplicated shape. 2011-12-08 16:29:45 +04:00
gcalc_tools.cc 5.3 merge 2012-01-13 15:50:02 +01:00
gcalc_tools.h 5.3->5.5 merge 2011-11-27 17:46:20 +01:00
gen_lex_hash.cc Merge MySQL 5.1.66 -> MariaDB 5.1.65 2012-11-06 11:52:55 +02:00
gstream.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
gstream.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
ha_ndbcluster.cc cleanup: use MYF() for mysys flags 2013-01-23 16:18:09 +01:00
ha_ndbcluster.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
ha_ndbcluster_binlog.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
ha_ndbcluster_binlog.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
ha_ndbcluster_cond.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
ha_ndbcluster_cond.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
ha_ndbcluster_tables.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
ha_partition.cc 5.5 merge 2013-06-06 17:51:28 +02:00
ha_partition.h 5.5 merge 2013-06-06 17:51:28 +02:00
handler.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
handler.h 5.5 merge 2013-06-06 17:51:28 +02:00
hash_filo.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
hash_filo.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
hostname.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
hostname.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
init.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
init.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
innodb_priv.h extend check_global_access() to avoid my_error when it's not needed 2013-03-19 15:25:58 +01:00
item.cc 5.5 merge 2013-06-06 17:51:28 +02:00
item.h 5.5 merge 2013-06-06 17:51:28 +02:00
item_buff.cc remove HAVE_EXPLICIT_TEMPLATE_INSTANTIATION 2012-12-17 10:56:26 +01:00
item_cmpfunc.cc 5.5 merge 2013-06-06 17:51:28 +02:00
item_cmpfunc.h MDEV-4345 2013-04-18 22:22:04 +03:00
item_create.cc MDEV-4402 A function to visualize histograms data. 2013-04-20 23:30:21 +03:00
item_create.h MDEV-377 Name support for dynamic columns 2012-09-28 14:01:17 +03:00
item_func.cc 5.5 merge 2013-06-06 17:51:28 +02:00
item_func.h 5.5 merge 2013-06-06 17:51:28 +02:00
item_geofunc.cc 5.3 merge 2013-03-27 10:03:28 +01:00
item_geofunc.h 5.3 merge 2013-01-15 19:07:46 +01:00
item_row.cc [NOT] EXISTS to IN transformation. 2013-02-26 01:20:17 +02:00
item_row.h 5.3 merge 2012-01-13 15:50:02 +01:00
item_strfunc.cc 5.5 merge 2013-06-06 17:51:28 +02:00
item_strfunc.h 5.5 merge 2013-06-06 17:51:28 +02:00
item_subselect.cc handlerton::discover_table_names() can not discover only 2013-04-09 15:49:00 +02:00
item_subselect.h 5.5 merge 2013-03-27 23:41:02 +01:00
item_sum.cc 5.5 merge 2013-06-06 17:51:28 +02:00
item_sum.h remove ULL() and LL(), because they're totally unnecessary 2013-04-07 14:00:16 +02:00
item_timefunc.cc remove ULL() and LL(), because they're totally unnecessary 2013-04-07 14:00:16 +02:00
item_timefunc.h MDEV-4265 5.5 is slower than 5.3 because of many str_to_datetime calls 2013-03-13 22:33:52 +01:00
item_xmlfunc.cc 5.2 -> 5.3 2013-02-28 21:48:47 +01:00
item_xmlfunc.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
key.cc mysql-5.5.31 merge 2013-05-07 13:05:09 +02:00
key.h mysql-5.5.31 merge 2013-05-07 13:05:09 +02:00
keycaches.cc Fixed compiler warnings and a not critical memory leak 2013-04-17 22:33:33 +03:00
keycaches.h Fixed compiler warnings and a not critical memory leak 2013-04-17 22:33:33 +03:00
lex.h MDEV-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
lex_symbol.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
lock.cc error messages: name the storage engine explicitly, 2013-04-09 23:27:07 +02:00
lock.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
log.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
log.h MDEV-4506, parallel replication. 2013-09-13 15:09:57 +02:00
log_event.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
log_event.h Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
log_event_old.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
log_event_old.h Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
log_slow.h lots of post-merge changes 2011-04-25 17:22:25 +02:00
main.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
mdl.cc MDEV-3917 multiple use locks (GET_LOCK) in one connection. 2013-04-12 18:06:51 +05:00
mdl.h MDEV-3917 multiple use locks (GET_LOCK) in one connection. 2013-04-12 18:06:51 +05:00
mem_root_array.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
message.h 5.3 merge 2012-01-13 15:50:02 +01:00
message.mc
message.rc
mf_iocache.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
MSG00001.bin
multi_range_read.cc Fixed errors and compiler warnings found by buildbot 2013-05-05 21:39:31 +03:00
multi_range_read.h fix the include guards and add missing gplv2 headers 2012-02-17 12:19:38 +01:00
my_apc.cc small cleanup 2013-04-07 14:03:43 +02:00
my_apc.h small cleanup 2013-04-07 14:03:43 +02:00
my_decimal.cc 5.3 merge 2012-01-13 15:50:02 +01:00
my_decimal.h merge 2012-04-05 23:07:18 +02:00
mysql_install_db.cc Small mysql_install_db.exe fixes 2013-05-09 22:21:07 +02:00
mysql_upgrade_service.cc - Properly terminate options array with all-zero entry. 2011-05-20 01:38:42 +02:00
mysqld.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
mysqld.h Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
mysqld_suffix.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
net_serv.cc MDEV-4011 Added per thread memory counting and usage 2013-01-23 16:16:14 +01:00
nt_servc.cc Bug#11754011: 45546: START WINDOWS SERVICE, THEN EXECUTE WHAT IS NEEDED. 2011-12-13 17:44:19 +02:00
nt_servc.h Bug#11754011: 45546: START WINDOWS SERVICE, THEN EXECUTE WHAT IS NEEDED. 2011-12-13 17:44:19 +02:00
opt_index_cond_pushdown.cc 5.3 merge 2012-02-21 20:51:56 +01:00
opt_range.cc 5.5 merge 2013-06-06 17:51:28 +02:00
opt_range.h MDEV-4345: fixed optimizer_selectivity_sampling_limit default value. 2013-04-19 19:35:13 +03:00
opt_range_mrr.cc The pilot patch for mwl#253. 2013-03-11 07:44:24 -07:00
opt_subselect.cc Merge 10.0-base -> mwl253 2013-04-15 09:16:54 -07:00
opt_subselect.h The pilot patch for mwl#253. 2013-03-11 07:44:24 -07:00
opt_sum.cc MDEV-4243 Warnings/errors while compiling with clang 2013-03-28 20:04:14 +01:00
opt_table_elimination.cc fix the include guards and add missing gplv2 headers 2012-02-17 12:19:38 +01:00
parse_file.cc 5.3 merge 2012-05-04 07:16:38 +02:00
parse_file.h 5.3 merge 2012-05-04 07:16:38 +02:00
partition_element.h mysql-5.5.31 merge 2013-05-07 13:05:09 +02:00
partition_info.cc 5.5 merge 2013-06-06 17:51:28 +02:00
partition_info.h 5.5 merge 2013-06-06 17:51:28 +02:00
password.c Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
plistsort.c Precise GIS functions added. 2011-05-04 23:20:17 +05:00
procedure.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
procedure.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
protocol.cc MDEV-4011 Added per thread memory counting and usage 2013-01-23 16:16:14 +01:00
protocol.h MWL#182: Explain running statements: address review feedback 2012-07-10 21:23:00 +04:00
records.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
records.h 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
repl_failsafe.cc MDEV-500: Session variable for server_id 2012-10-23 12:46:29 +02:00
repl_failsafe.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
replication.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_constants.h Updated/added copyright headers 2011-06-30 17:37:13 +02:00
rpl_filter.cc Makeing rpl_filter for each Master_info. 2013-04-16 19:43:28 +08:00
rpl_filter.h Makeing rpl_filter for each Master_info. 2013-04-16 19:43:28 +08:00
rpl_gtid.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
rpl_gtid.h MDEV-4506: Parallel replication. Intermediate commit. 2013-07-03 19:03:21 +02:00
rpl_handler.cc MDEV-26: Global transaction ID. First alpha release. 2013-04-15 10:55:27 +02:00
rpl_handler.h cleanup: use MYF() for mysys flags 2013-01-23 16:18:09 +01:00
rpl_injector.cc MDEV-500: Session variable for server_id 2012-10-23 12:46:29 +02:00
rpl_injector.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
rpl_mi.cc MDEV-26: Global transaction ID. 2013-06-05 14:32:47 +02:00
rpl_mi.h 5.5 merge 2013-06-06 17:51:28 +02:00
rpl_parallel.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
rpl_parallel.h MDEV-4506: Parallel replication. 2013-10-08 14:36:06 +02:00
rpl_record.cc MDEV-4506: parallel replication. 2013-09-16 14:33:49 +02:00
rpl_record.h MDEV-4506: Parallel replication: Fix Windows compiler failure. 2013-09-19 20:54:08 +02:00
rpl_record_old.cc MDEV-4506: parallel replication. 2013-09-16 14:33:49 +02:00
rpl_record_old.h MDEV-4506: parallel replication. 2013-09-16 14:33:49 +02:00
rpl_reporting.cc Instead of writing "Errcode" to the log for Slave errors, use "Internal MariaDB error code" 2013-05-03 01:54:47 +03:00
rpl_reporting.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_rli.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
rpl_rli.h Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
rpl_tblmap.cc cleanup: use MYF() for mysys flags 2013-01-23 16:18:09 +01:00
rpl_tblmap.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
rpl_utility.cc MDEV-4506, parallel replication. 2013-09-13 15:09:57 +02:00
rpl_utility.h MDEV-4506: Parallel replication: Intermediate commit. 2013-06-28 15:19:30 +02:00
scheduler.cc remove the service for installing the closed-source mysql thread pool plugin 2013-04-07 14:50:01 +02:00
scheduler.h MDEV-531 : Warning: Forcing close of thread ... in rpl_binlog_index 2012-11-02 10:43:52 +01:00
set_var.cc 5.5 merge 2013-06-06 17:51:28 +02:00
set_var.h 5.5 merge 2013-06-06 17:51:28 +02:00
sha2.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
signal_handler.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
slave.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
slave.h MDEV-4506: Parallel replication: Intermediate commit. 2013-06-28 15:19:30 +02:00
sp.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sp.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sp_cache.cc mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
sp_cache.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sp_head.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sp_head.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sp_pcontext.cc cleanup: use MYF() for mysys flags 2013-01-23 16:18:09 +01:00
sp_pcontext.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp_rcontext.cc mysql-5.5.29 merge 2013-01-15 19:13:32 +01:00
sp_rcontext.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
spatial.cc 5.3 merge 2013-03-27 10:03:28 +01:00
spatial.h 5.3 merge 2013-03-27 10:03:28 +01:00
sql_acl.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_acl.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_admin.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_admin.h Bug#14521864: MYSQL 5.1 TO 5.5 BUGS PARTITIONING 2013-01-30 17:51:52 +01:00
sql_alter.cc mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_alter.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_analyse.cc 5.3 merge 2012-01-13 15:50:02 +01:00
sql_analyse.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sql_array.h handlerton::discover_table_names() can not discover only 2013-04-09 15:49:00 +02:00
sql_audit.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_audit.h 5.5 merge 2013-06-06 17:51:28 +02:00
sql_base.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
sql_base.h optimize discovery for cases when the storage engine is known in advance 2013-04-09 16:20:48 +02:00
sql_binlog.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
sql_binlog.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_bitmap.h remove ULL() and LL(), because they're totally unnecessary 2013-04-07 14:00:16 +02:00
sql_builtin.cc.in mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_cache.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_cache.h MDEV-249 QUERY CACHE INFORMATION 2013-03-20 20:56:14 +01:00
sql_callback.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_class.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
sql_class.h Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
sql_client.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sql_connect.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_connect.h Bug#14003080:65104: MAX_USER_CONNECTIONS WITH PROCESSLIST EMPTY 2012-05-28 11:14:43 +05:30
sql_const.h Fixed: MDEV-4352; LOAD DATA was not multi-source safe 2013-05-03 01:50:42 +03:00
sql_crypt.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_crypt.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_cursor.cc Fix for bug lp:1039277 "Crash in sql_cache.cc". 2012-08-21 08:46:32 +03:00
sql_cursor.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sql_db.cc single table discovery: handlerton::discover_table() method. 2013-04-09 15:45:31 +02:00
sql_db.h s/st_ha_create_information/HA_CREATE_INFO/ 2013-04-07 15:35:39 +02:00
sql_delete.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_delete.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_derived.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sql_derived.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_do.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sql_do.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_error.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_error.h 5.5 merge 2013-06-06 17:51:28 +02:00
sql_expression_cache.cc MDEV-452 Add full support for auto-initialized/updated timestamp and datetime 2012-10-17 15:43:56 +03:00
sql_expression_cache.h fix the include guards and add missing gplv2 headers 2012-02-17 12:19:38 +01:00
sql_handler.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_handler.h merge with 5.3 2011-10-19 21:45:18 +02:00
sql_help.cc mysql-5.5.29 merge 2013-01-15 19:13:32 +01:00
sql_help.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_hset.h Another follow-up for 5.5 version of fix for bug#54360 2010-07-01 19:48:56 +04:00
sql_insert.cc MDEV-4506: Parallel replication: Intermediate commit 2013-07-12 14:36:20 +02:00
sql_insert.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_join_cache.cc Fixed errors and compiler warnings found by buildbot 2013-05-05 21:39:31 +03:00
sql_join_cache.h 5.3 merge 2012-02-21 20:51:56 +01:00
sql_lex.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_lex.h 5.5 merge 2013-06-06 17:51:28 +02:00
sql_lifo_buffer.h fix the include guards and add missing gplv2 headers 2012-02-17 12:19:38 +01:00
sql_list.cc Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sql_list.h 5.3->5.5 merge 2013-02-28 22:47:29 +01:00
sql_load.cc MDEV-4506: Parallel replication: Intermediate commit 2013-07-12 14:36:20 +02:00
sql_load.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_locale.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_locale.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_manager.cc 5.3.4 merge 2012-02-15 18:08:08 +01:00
sql_manager.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_parse.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
sql_parse.h cleanup 2013-04-09 16:18:37 +02:00
sql_partition.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_partition.h 5.5 merge 2013-06-06 17:51:28 +02:00
sql_partition_admin.cc Bug#14653504 CRASH WHEN TRUNCATING PARTITIONS FROM A VIEW! 2013-02-26 17:57:05 +05:30
sql_partition_admin.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_plist.h Fix for bug#12695572 - "IMPROVE MDL PERFORMANCE IN PRE-VISTA 2011-11-15 22:00:14 +04:00
sql_plugin.cc put status variables in the proper pluginname_ scope 2013-04-09 23:27:33 +02:00
sql_plugin.h MDEV-3807 show plugins soname 'xxx' 2013-04-09 23:27:29 +02:00
sql_plugin_compat.h strmake_buf(X,Y) helper, equivalent to strmake(X,Y,sizeof(X)-1) 2013-04-17 19:42:34 +02:00
sql_plugin_services.h remove the service for installing the closed-source mysql thread pool plugin 2013-04-07 14:50:01 +02:00
sql_prepare.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_prepare.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_priv.h Merge 10.0-base->mwl253 2013-04-12 06:21:22 -07:00
sql_profile.cc 5.3 merge 2013-01-15 19:07:46 +01:00
sql_profile.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sql_reload.cc MDEV-3917 multiple use locks (GET_LOCK) in one connection. 2013-04-12 18:06:51 +05:00
sql_reload.h BUG#46166 2010-12-07 16:11:13 +00:00
sql_rename.cc test_sql_discovery storage engine 2013-04-09 16:07:35 +02:00
sql_rename.h test_sql_discovery storage engine 2013-04-09 16:07:35 +02:00
sql_repl.cc MDEV-4490: Old-style master position points at the last GTID event after slave restart 2013-06-07 14:39:00 +02:00
sql_repl.h Fix two small problems in previous push. 2013-06-05 15:32:44 +02:00
sql_select.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_select.h MDEV-4345 2013-04-18 22:22:04 +03:00
sql_servers.cc cleanup: use MYF() for mysys flags 2013-01-23 16:18:09 +01:00
sql_servers.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sql_show.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_show.h * use Dynamic_array<> instead of List<> for the list of found tables in sql_show.cc 2013-04-07 17:11:19 +02:00
sql_signal.cc mysql-5.5.29 merge 2013-01-15 19:13:32 +01:00
sql_signal.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_sort.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
sql_state.c Fix for MDEV-533: Confusing error code when doing auto-increment insert for out-of-range values 2012-09-18 15:14:19 +03:00
sql_statistics.cc Fixed errors and compiler warnings found by buildbot 2013-05-05 21:39:31 +03:00
sql_statistics.h Added comments. 2013-04-15 22:43:07 -07:00
sql_string.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_string.h 5.5 merge 2013-06-06 17:51:28 +02:00
sql_table.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_table.h Assisted discovery 2013-04-09 16:19:14 +02:00
sql_tablespace.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_tablespace.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_test.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_test.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_time.cc remove ULL() and LL(), because they're totally unnecessary 2013-04-07 14:00:16 +02:00
sql_time.h 5.3 merge 2012-08-31 14:15:52 +02:00
sql_trigger.cc MDEV-318 IF (NOT) EXIST clauses for ALTER TABLE (MWL #252). 2013-04-13 11:59:16 +05:00
sql_trigger.h 5.3 merge 2012-01-13 15:50:02 +01:00
sql_truncate.cc optimize discovery for cases when the storage engine is known in advance 2013-04-09 16:20:48 +02:00
sql_truncate.h Bug#49938: Failing assertion: inode or deadlock in fsp/fsp0fsp.c 2010-10-06 11:34:28 -03:00
sql_udf.cc cleanup: use MYF() for mysys flags 2013-01-23 16:18:09 +01:00
sql_udf.h remove ULL() and LL(), because they're totally unnecessary 2013-04-07 14:00:16 +02:00
sql_union.cc 5.5 merge 2013-01-29 15:10:47 +01:00
sql_union.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_update.cc 5.5 merge 2013-03-27 23:41:02 +01:00
sql_update.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_view.cc 5.5 merge 2013-06-06 17:51:28 +02:00
sql_view.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_yacc.yy 5.5 merge 2013-06-06 17:51:28 +02:00
strfunc.cc 5.5 merge 2013-03-27 23:41:02 +01:00
strfunc.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
structs.h Addressed all remaining issues from the review of the patch 2012-12-13 23:05:12 -08:00
sys_vars.cc MDEV-4506: Parallel replication: Intermediate commit. 2013-07-09 13:15:53 +02:00
sys_vars.h MDEV-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
sys_vars_shared.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
table.cc MDEV-4345 2013-04-18 22:22:04 +03:00
table.h MDEV-4345 2013-04-18 22:22:04 +03:00
thr_malloc.cc MDEV-4011 Added per thread memory counting and usage 2013-01-23 16:16:14 +01:00
thr_malloc.h MDEV-4011 Added per thread memory counting and usage 2013-01-23 16:16:14 +01:00
threadpool.h Added copiright, some more comments 2012-02-17 23:27:15 +01:00
threadpool_common.cc MDEV-3945 - do not hold LOCK_thread_count when freeing THD. 2012-12-21 00:12:37 +01:00
threadpool_unix.cc MDEV-4553 - Fixes for compilation under NetBSD. 2013-05-27 16:35:42 +02:00
threadpool_win.cc MDEV-531 : Warning: Forcing close of thread ... in rpl_binlog_index 2012-11-02 10:43:52 +01:00
transaction.cc Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
transaction.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
tzfile.h Updated/added copyright headers. 2013-02-25 15:26:00 +01:00
tztime.cc 5.5 merge 2013-06-06 17:51:28 +02:00
tztime.h Merge with 5.2. 2011-12-11 11:34:44 +02:00
udf_example.c 5.3 merge 2012-01-13 15:50:02 +01:00
udf_example.def Patch set contributed by Alex Budovski (MCA) 2010-01-29 20:42:22 +02:00
uniques.cc Fixed bug mdev-4369. 2013-04-06 15:36:28 -07:00
unireg.cc post-review comments and other minor edits 2013-04-09 16:20:59 +02:00
unireg.h post-review comments and other minor edits 2013-04-09 16:20:59 +02:00
winservice.c Merge 5.3->5.5 2012-03-17 01:26:58 -07:00
winservice.h fix the include guards and add missing gplv2 headers 2012-02-17 12:19:38 +01:00