mariadb/sql
unknown 47929af5e0 MDEV-450: Deadlock between starting a slave and reading system variables
Starting the SQL thread might deadlock with reading the values of the
replication filtering options.

The deadlock is due to a lock order violation when the variables are
read or set. For example, reading replicate_ignore_table first
acquires LOCK_global_system_variables in sys_var::value_ptr and later
acquires LOCK_active_mi in Sys_var_rpl_filter::global_value_ptr. This
violates the order established when starting a SQL thread, where
LOCK_active_mi is acquired before start_slave, and ends up creating a
thread (handle_slave_sql) that allocates a THD handle whose
constructor acquires LOCK_global_system_variables in THD::init.

The solution is to unlock LOCK_global_system_variables before the
replication filtering options are set or read. This way the lock
order is preserved and the data being read/set is still protected
given that it acquires LOCK_active_mi.
2012-08-14 12:40:40 +02:00
..
examples merge with 5.3 2011-10-19 21:45:18 +02:00
share mysql-5.5 merge 2012-06-14 20:05:31 +02:00
add_errmsg WL#751 Error message construction, backport 2009-10-15 17:23:43 +05:00
authors.h 5.3 merge 2012-01-13 15:50:02 +01:00
client_settings.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
CMakeLists.txt Bug#12845091 .EMPTY FILE IN /DATA/TEST PREVENTS USERS FROM DROPPING TEST DB ON 5.5 AND 5.6 2012-05-29 10:54:57 +02:00
contributors.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
create_options.cc compilation fixes 2011-11-27 17:50:08 +01:00
create_options.h merge with 5.3 2011-10-19 21:45:18 +02:00
custom_conf.h
datadict.cc Manual merge from mysql-5.5-bugfixing to mysql-5.5-runtime. 2010-08-18 13:29:04 +02:00
datadict.h lots of post-merge changes 2011-04-25 17:22:25 +02:00
debug_sync.cc debug_sync is now a service, available to dynamically loaded plugins. 2012-03-28 19:26:00 +02: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 5.3 merge 2012-01-13 15:50:02 +01:00
derror.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
des_key_file.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
des_key_file.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
discover.cc mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
discover.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
event_data_objects.cc 5.3 merge 2012-01-13 15:50:02 +01:00
event_data_objects.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
event_db_repository.cc 5.3 merge 2012-01-13 15:50:02 +01:00
event_db_repository.h 5.3 merge 2012-01-13 15:50:02 +01:00
event_parse_data.cc 5.3 merge 2012-01-13 15:50:02 +01:00
event_parse_data.h 5.3 merge 2012-01-13 15:50:02 +01:00
event_queue.cc mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
event_queue.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
event_scheduler.cc Bug#12636001 : deadlock from thd_security_context 2012-05-17 18:07:59 +05:30
event_scheduler.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
events.cc 5.3 merge 2012-01-13 15:50:02 +01:00
events.h 5.5-merge 2011-07-02 22:08:51 +02:00
field.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
field.h fix compile error, when building with oqgraph 2012-06-25 18:17:24 +02:00
field_conv.cc mysql-5.5 merge 2012-06-14 20:05:31 +02:00
filesort.cc mysql 5.5.23 merge 2012-04-10 08:28:13 +02:00
filesort.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
frm_crypt.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
frm_crypt.h Updated/added copyright headers 2011-06-30 17:46:53 +02: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 5.3 merge 2012-01-13 15:50:02 +01:00
gstream.cc Merge with 5.2. 2011-12-11 11:34:44 +02:00
gstream.h 5.3->5.5 merge 2011-11-27 17:46:20 +01:00
ha_ndbcluster.cc 5.3 merge 2012-01-13 15:50:02 +01:00
ha_ndbcluster.h mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
ha_ndbcluster_binlog.cc 5.3 merge 2012-01-13 15:50:02 +01:00
ha_ndbcluster_binlog.h Updated/added copyright headers 2012-02-16 10:48:16 +01:00
ha_ndbcluster_cond.cc Remove last traces of HAVE_NDBCLUSTER_DB define - it has not had an effect in a long time and is just confusing. 2011-02-21 11:15:29 +01:00
ha_ndbcluster_cond.h WL#5030: Split and remove mysql_priv.h 2010-03-31 16:05:33 +02:00
ha_ndbcluster_tables.h
ha_partition.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
ha_partition.h fixed MySQL bug#53775: 2012-07-13 22:17:32 +03:00
handler.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
handler.h fix to satisfy compiler. 2012-07-16 10:48:03 +03:00
hash_filo.cc mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
hash_filo.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
hostname.cc Bug#11753779: MAX_CONNECT_ERRORS WORKS ONLY WHEN 1ST 2012-06-19 13:54:31 +05:30
hostname.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
init.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
init.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
innodb_priv.h 5.3 merge 2012-05-04 07:16:38 +02:00
item.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
item.h Merge the fix for lp:944706, mdev-193 2012-06-06 22:26:40 +03:00
item_buff.cc 5.3 merge 2012-01-13 15:50:02 +01:00
item_cmpfunc.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
item_cmpfunc.h Merge 5.3 -> 5.5 2012-06-20 15:01:28 +04:00
item_create.cc 5.3 merge 2012-01-13 15:50:02 +01:00
item_create.h 5.3 merge 2012-01-13 15:50:02 +01:00
item_func.cc Merge 5.3 -> 5.5 2012-06-20 15:01:28 +04:00
item_func.h Fixed LP bug #1002157. 2012-06-15 00:01:20 -07:00
item_geofunc.cc fix val_str_ascii to return a string in the ascii-compatible charset. 2012-08-09 18:25:47 +02:00
item_geofunc.h 5.3->5.5 merge 2011-11-27 17:46:20 +01:00
item_row.cc Merge 5.3 -> 5.5 2012-06-20 15:01:28 +04:00
item_row.h 5.3 merge 2012-01-13 15:50:02 +01:00
item_strfunc.cc Updated/added copyright headers 2012-02-15 17:13:47 +01:00
item_strfunc.h Merged the fix for bug lp:944706, mdev-193 2012-06-19 15:06:45 +03:00
item_subselect.cc MDEV-410: EXPLAIN shows type=range, while SHOW EXPLAIN and userstat show full table scan is used 2012-07-25 20:41:48 +04:00
item_subselect.h Merged the fix for bug lp:944706, mdev-193 2012-06-19 15:06:45 +03:00
item_sum.cc Merge 5.3 -> 5.5 2012-06-20 15:01:28 +04:00
item_sum.h Merge 5.3->5.5. 2012-03-01 14:22:22 -08:00
item_timefunc.cc Bug#13986705 CRASH IN GET_INTERVAL_VALUE() WITH DATE CALCULATION WITH UTF32 INTERVALS 2012-05-21 10:47:12 +02:00
item_timefunc.h LP993103: Wrong result with LAST_DAY('0000-00-00 00:00:00')IS NULL in WHERE condition 2012-05-02 16:53:02 +02:00
item_xmlfunc.cc mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
item_xmlfunc.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
key.cc Merge with 5.2. 2011-12-11 11:34:44 +02:00
key.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
keycaches.cc mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
keycaches.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
lex.h Merged the implementation of MDEV-28 LIMIT ROWS EXAMINED into MariaDB 5.5. 2012-03-12 00:45:18 +02:00
lex_symbol.h
lock.cc MDEV-254: Server hang with FLUSH TABLES WITH READ LOCK AND DISABLE CHECKPOINT 2012-05-08 14:27:44 +02:00
lock.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
log.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
log.h merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
log_event.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
log_event.h merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
log_event_old.cc mysql-5.5 merge 2012-06-14 20:05:31 +02:00
log_event_old.h Fixed bug lp:917689 "Archive table corruption crashing MariaDB signal 11" 2012-03-13 16:38:43 +02: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-117 Assertion: prebuilt->sql_stat_start || trx->conc_state == 1 failed at row0sel.c:3933 2012-03-01 16:24:59 +01:00
mdl.h mysql-5.5 merge 2012-01-16 20:16:35 +01:00
mem_root_array.h Backport 5.5=>5.1 Patch for Bug#13805127: 2012-04-18 13:14:05 +02:00
message.h 5.3 merge 2012-01-13 15:50:02 +01:00
message.mc
message.rc
mf_iocache.cc mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
MSG00001.bin
multi_range_read.cc 5.3 merge 2012-02-24 14:37:00 +01:00
multi_range_read.h fix the include guards and add missing gplv2 headers 2012-02-17 12:19:38 +01: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 MDEV-393. Remove --loose-pbxt=OFF/loose-skip-pbxt from bootstrapper calls to avoid "unknown parameter" warning 2012-07-12 15:32:35 +02:00
mysql_upgrade_service.cc - Properly terminate options array with all-zero entry. 2011-05-20 01:38:42 +02:00
mysqld.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
mysqld.h merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
mysqld_suffix.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
net_serv.cc Update copyright notices 2012-02-28 18:53:05 +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 merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
opt_range.h Merge 5.3->5.5. 2012-06-24 09:10:11 -07:00
opt_range_mrr.cc fix the include guards and add missing gplv2 headers 2012-02-17 12:19:38 +01:00
opt_subselect.cc Merge the fix for lp:944706, mdev-193 2012-06-06 22:26:40 +03:00
opt_subselect.h 5.3 merge 2012-05-04 07:16:38 +02:00
opt_sum.cc 5.3 merge 2012-05-21 20:54:41 +02: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.18 merge 2011-11-03 19:17:05 +01:00
partition_info.cc 5.3 merge 2012-01-13 15:50:02 +01:00
partition_info.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
password.c mysql-5.5 merge 2012-06-14 20:05:31 +02:00
plistsort.c Precise GIS functions added. 2011-05-04 23:20:17 +05:00
procedure.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
procedure.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
protocol.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
protocol.h Merge with 5.2. 2011-12-11 11:34:44 +02:00
records.cc merge 5.1 => 5.5 2012-06-05 16:12:22 +02:00
records.h 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
repl_failsafe.cc 5.3 merge 2012-01-13 15:50:02 +01:00
repl_failsafe.h Updated/added copyright headers 2011-06-30 17:46:53 +02: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 Make Replication filter settings dynamic. 2012-03-19 15:00:23 -07:00
rpl_filter.h Make Replication filter settings dynamic. 2012-03-19 15:00:23 -07:00
rpl_handler.cc mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
rpl_handler.h Updated/added copyright headers 2012-02-16 10:48:16 +01:00
rpl_injector.cc mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
rpl_injector.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
rpl_mi.cc mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
rpl_mi.h mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
rpl_record.cc Merge 5.3->5.5 2012-03-17 01:26:58 -07:00
rpl_record.h Merge 5.3->5.5 2012-03-17 01:26:58 -07:00
rpl_record_old.cc Merge 5.3->5.5 2012-03-17 01:26:58 -07:00
rpl_record_old.h Merge 5.3->5.5 2012-03-17 01:26:58 -07:00
rpl_reporting.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_reporting.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_rli.cc mysql-5.5 merge 2012-06-14 20:05:31 +02:00
rpl_rli.h mysql-5.5 merge 2012-06-14 20:05:31 +02:00
rpl_tblmap.cc mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
rpl_tblmap.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
rpl_utility.cc Fix memory leak introduced with merge of mysql 5.5. 2012-06-20 14:23:23 +02:00
rpl_utility.h merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
scheduler.cc Update copyright notices 2012-02-28 18:53:05 +01:00
scheduler.h Update copyright notices 2012-02-28 18:53:05 +01:00
set_var.cc MDEV-136 Non-blocking "set read_only". 2012-05-21 19:37:46 +05:00
set_var.h mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
sha2.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
signal_handler.cc MDEV-419 ensure that all HAVE_XXX constants can be set by cmake 2012-07-31 19:29:07 +02:00
slave.cc MDEV-450: Deadlock between starting a slave and reading system variables 2012-08-14 12:40:40 +02:00
slave.h Merge MWL#234: @@skip_replication feature to MariaDB 5.5. 2012-03-01 12:41:49 +01:00
sp.cc 5.3 merge 2012-01-13 15:50:02 +01: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 mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
sp_head.cc 5.2 merge 2012-05-20 14:57:29 +02:00
sp_head.h merge 2012-04-05 12:01:52 +02:00
sp_pcontext.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp_pcontext.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sp_rcontext.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sp_rcontext.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
spatial.cc mysql-5.5 merge 2012-06-14 20:05:31 +02:00
spatial.h MDEV-419 ensure that all HAVE_XXX constants can be set by cmake 2012-07-31 19:29:07 +02:00
sql_acl.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
sql_acl.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_admin.cc More fixes for LOCK TABLE and REPAIR/FLUSH 2012-05-17 01:47:28 +03:00
sql_admin.h Updated/added copyright headers 2011-06-30 17:46:53 +02: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 mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_array.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_audit.cc mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_audit.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_base.cc mysql-5.5 merge 2012-06-14 20:05:31 +02:00
sql_base.h Fixed bug LP:973039 - Assertion `share->in_trans == 0' failed in maria_close on DROP TABLE under LOCK 2012-05-16 18:44:17 +03:00
sql_binlog.cc compilation warning: unused variable 2012-03-05 21:55:25 +01:00
sql_binlog.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_bitmap.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_builtin.cc.in mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_cache.cc fixed MySQL bug#53775: 2012-07-13 22:17:32 +03:00
sql_cache.h fixed MySQL bug#53775: 2012-07-13 22:17:32 +03:00
sql_callback.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_class.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
sql_class.h MDEV-375 Server crashes in THD::print_aborted_warning with log_warnings > 3 2012-07-31 18:32:46 +02:00
sql_client.cc Update copyright notices 2012-02-28 18:53:05 +01:00
sql_connect.cc Bug#11753779: MAX_CONNECT_ERRORS WORKS ONLY WHEN 1ST 2012-06-19 13:54:31 +05:30
sql_connect.h Bug#14003080:65104: MAX_USER_CONNECTIONS WITH PROCESSLIST EMPTY 2012-05-28 11:14:43 +05:30
sql_const.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01: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 5.3 merge 2012-01-13 15:50:02 +01:00
sql_cursor.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_db.cc 5.3 merge 2012-01-13 15:50:02 +01:00
sql_db.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_delete.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
sql_delete.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_derived.cc Merge 5.3->5.5 2012-03-17 01:26:58 -07:00
sql_derived.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_do.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_do.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_error.cc Merge with 5.2. 2011-12-11 11:34:44 +02:00
sql_error.h merge with 5.3 2011-10-19 21:45:18 +02:00
sql_expression_cache.cc don't forget to call ha_index_end before destroying the handler 2011-10-19 22:52:43 +02: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 Merge mariadb 5.3->mariadb 5.5 2012-03-24 18:21:22 +01:00
sql_handler.h merge with 5.3 2011-10-19 21:45:18 +02:00
sql_help.cc 5.3 merge 2012-01-13 15:50:02 +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-419 ensure that all HAVE_XXX constants can be set by cmake 2012-07-31 19:29:07 +02:00
sql_insert.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_join_cache.cc Merge mariadb 5.3->mariadb 5.5 2012-03-24 18:21:22 +01:00
sql_join_cache.h 5.3 merge 2012-02-21 20:51:56 +01:00
sql_lex.cc Merged the fix for bug lp:944706, mdev-193 2012-06-19 15:06:45 +03:00
sql_lex.h Merged the fix for bug lp:944706, mdev-193 2012-06-19 15:06:45 +03: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 mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_list.h merge 2012-04-07 15:58:46 +02:00
sql_load.cc 5.3.4 merge 2012-02-15 18:08:08 +01: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 merge 2012-06-16 09:03:07 +02:00
sql_parse.h 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
sql_partition.cc More fixes for LOCK TABLE and REPAIR/FLUSH 2012-05-17 01:47:28 +03:00
sql_partition.h mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
sql_partition_admin.cc Updated/added copyright headers 2011-06-30 17:46:53 +02:00
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 merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
sql_plugin.h merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
sql_plugin_services.h debug_sync is now a service, available to dynamically loaded plugins. 2012-03-28 19:26:00 +02:00
sql_prepare.cc 5.2 merge 2012-05-20 14:57:29 +02:00
sql_prepare.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_priv.h Merge 2012-03-02 22:52:03 -08:00
sql_profile.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
sql_profile.h MDEV-419 ensure that all HAVE_XXX constants can be set by cmake 2012-07-31 19:29:07 +02:00
sql_reload.cc 5.3 merge 2012-05-21 20:54:41 +02:00
sql_reload.h BUG#46166 2010-12-07 16:11:13 +00:00
sql_rename.cc 5.3 merge 2012-01-13 15:50:02 +01:00
sql_rename.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_repl.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
sql_repl.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_select.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
sql_select.h Merge the fix for lp:944706, mdev-193 2012-06-06 22:26:40 +03:00
sql_servers.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_servers.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_show.cc merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
sql_show.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_signal.cc mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_signal.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_sort.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_state.c
sql_string.cc Updated/added copyright headers 2012-02-15 17:13:47 +01:00
sql_string.h 5.3 merge 2012-01-13 15:50:02 +01:00
sql_table.cc MDEV-364 Server crashes in add_identifier on concurrent ALTER TABLE and SHOW ENGINE INNODB STATUS 2012-08-13 11:14:43 +02:00
sql_table.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01: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 Fixed some simple warnings on Windows. 2012-04-13 19:44:22 +02:00
sql_test.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_time.cc merge 2011-11-03 23:39:53 +01:00
sql_time.h merge 2011-11-03 23:39:53 +01:00
sql_trigger.cc More fixes for LOCK TABLE and REPAIR/FLUSH 2012-05-17 01:47:28 +03:00
sql_trigger.h 5.3 merge 2012-01-13 15:50:02 +01:00
sql_truncate.cc More fixes for LOCK TABLE and REPAIR/FLUSH 2012-05-17 01:47:28 +03: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 mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
sql_udf.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_union.cc Merged the implementation of MDEV-28 LIMIT ROWS EXAMINED into MariaDB 5.5. 2012-03-12 00:45:18 +02:00
sql_union.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_update.cc Bug#14248833: UPDATE ON INNODB TABLE ENTERS RECURSION 2012-06-28 16:53:45 +04:00
sql_update.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
sql_view.cc 5.3 merge 2012-05-04 07:16:38 +02:00
sql_view.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
sql_yacc.yy merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
strfunc.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
strfunc.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
structs.h Merge MWL #247 from mariadb 5.3 -> mariadb 5.5. 2012-03-02 15:03:20 -08:00
sys_vars.cc MDEV-450: Deadlock between starting a slave and reading system variables 2012-08-14 12:40:40 +02:00
sys_vars.h MDEV-450: Deadlock between starting a slave and reading system variables 2012-08-14 12:40:40 +02:00
sys_vars_shared.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
table.cc Merge bug#1007622 from 5.3 to 5.5 2012-07-18 22:36:20 +04:00
table.h Fixed LP bug #1010729. 2012-06-08 22:15:49 -07:00
thr_malloc.cc 5.3 merge 2012-01-13 15:50:02 +01:00
thr_malloc.h mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
threadpool.h Added copiright, some more comments 2012-02-17 23:27:15 +01:00
threadpool_common.cc MDEV-246 - Aborted_clients incremented during ordinary connection close 2012-05-03 02:47:06 +02:00
threadpool_unix.cc Threadpool - use EV_ONESHOT with kevent, to prevent race condition when 2 2012-04-12 01:40:44 +02:00
threadpool_win.cc MDEV-246 - Aborted_clients incremented during ordinary connection close 2012-05-03 02:47:06 +02:00
transaction.cc This patch fixes the bug#13737343 (formerly known as 64374): XA TRANSACTIONS 2012-03-15 15:10:57 +06:00
transaction.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
tzfile.h Updated/added copyright headers 2011-06-30 17:46:53 +02:00
tztime.cc 5.3 merge 2012-01-13 15:50:02 +01: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 Merge with 5.2. 2011-12-11 11:34:44 +02:00
unireg.cc Merge 5.3->5.5. 2012-06-24 09:10:11 -07:00
unireg.h fix compile error, when building with oqgraph 2012-06-25 18:17:24 +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