mariadb/sql
Sujatha f1838434b8 MDEV-22706: Assertion `!current' failed in PROFILING::start_new_query
Analysis:
========
When "Profiling" is enabled, server collects the resource usage of each
statement that gets executed in current session. Profiling doesn't support
nested statements. In order to ensure this behavior when profiling is enabled
for a statement, there should not be any other active query which is being
profiled. This active query information is stored in 'current' variable. When
a nested query arrives it finds 'current' being not NULL and server aborts.

When 'init_connect' and 'init_slave' system variables are set they contain a
set of statements to be executed. "execute_init_command" is the function call
which invokes "dispatch_command" for each statement provided in
'init_connect', 'init_slave' system variables. "execute_init_command" invokes
"start_new_query" and it passes the statement list to "dispatch_command". This
"dispatch_command" intern invokes "start_new_query" which leads to nesting of
queries. Hence '!current' assert is triggered.

Fix:
===
Remove profiling from "execute_init_command" as it will be done within
"dispatch_command" execution.
2020-06-25 13:03:34 +05:30
..
share MDEV-16594 ALTER DATA DIRECTORY in PARTITIONS of InnoDB storage does nothing silently 2019-09-09 15:39:12 +04:00
add_errmsg
authors.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
bounded_queue.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
client_settings.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
CMakeLists.txt CMake,Windows - cleanup data directory prior to bootstrap for nitial_database target 2019-12-12 00:05:55 +01:00
compat56.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
compat56.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
contributors.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
create_options.cc Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
create_options.h Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
custom_conf.h Update FSF Address 2019-05-11 21:29:06 +03:00
datadict.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
datadict.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
debug_sync.cc Update FSF Address 2019-05-11 21:29:06 +03:00
debug_sync.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
derror.cc imporve clang build 2019-06-25 13:21:36 +03:00
derror.h Update FSF Address 2019-05-11 21:29:06 +03:00
des_key_file.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
des_key_file.h Update FSF Address 2019-05-11 21:29:06 +03:00
discover.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
discover.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
encryption.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
event_data_objects.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
event_data_objects.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
event_db_repository.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
event_db_repository.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
event_parse_data.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
event_parse_data.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
event_queue.cc Update FSF Address 2019-05-11 21:29:06 +03:00
event_queue.h Update FSF Address 2019-05-11 21:29:06 +03:00
event_scheduler.cc Merge branch '5.5' into 10.1 2020-04-30 17:36:41 +02:00
event_scheduler.h Update FSF Address 2019-05-11 21:29:06 +03:00
events.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
events.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
field.cc MDEV-22715: SIGSEGV in radixsort_for_str_ptr and in native_compare/my_qsort2 (optimized builds) 2020-06-05 01:11:03 +05:30
field.h MDEV-22715: SIGSEGV in radixsort_for_str_ptr and in native_compare/my_qsort2 (optimized builds) 2020-06-05 01:11:03 +05:30
field_conv.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
filesort.cc MDEV-21044: Wrong result when using a smaller size for sort buffer 2019-11-18 11:50:58 +05:30
filesort.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
filesort_utils.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
filesort_utils.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
gcalc_slicescan.cc Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
gcalc_slicescan.h Update FSF address 2019-05-10 20:52:00 +03:00
gcalc_tools.cc Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
gcalc_tools.h Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
gen_lex_hash.cc gen_lex_hash: Omit deprecated register keywords 2019-07-23 15:23:27 +03:00
gen_lex_token.cc Update FSF address 2019-05-11 19:25:02 +03:00
gen_win_tzname_data.ps1 MDEV-22419 update windows timezone data from using newest ICU source 2020-04-30 01:21:44 +02:00
group_by_handler.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
group_by_handler.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
gstream.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
gstream.h Update FSF Address 2019-05-11 21:29:06 +03:00
ha_partition.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
ha_partition.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
handler.cc imporve clang build 2019-06-25 13:21:36 +03:00
handler.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
hash_filo.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
hash_filo.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
hostname.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
hostname.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
init.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
init.h Update FSF Address 2019-05-11 21:29:06 +03:00
innodb_priv.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item.cc MDEV-20922: Adding an order by changes the query results 2020-01-02 09:49:13 +05:30
item.h MDEV-22579 No error when inserting DEFAULT(non_virtual_column) into a virtual column 2020-05-15 20:21:54 +04:00
item_buff.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_cmpfunc.cc imporve clang build 2019-06-25 13:21:36 +03:00
item_cmpfunc.h Merge 5.5 into 10.1 2019-06-20 12:26:01 +03:00
item_create.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_create.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_func.cc MDEV-22502 MDB crashes in CREATE TABLE AS SELECT when the precision of returning type = 0. 2020-05-14 11:41:27 +04:00
item_func.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_geofunc.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_geofunc.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_inetfunc.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_inetfunc.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_row.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_row.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_strfunc.cc correct off-by-one error in CONCAT 2020-04-30 10:13:21 +02:00
item_strfunc.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_subselect.cc MDEV-22498: SIGSEGV in Bitmap<64u>::merge on SELECT 2020-05-14 23:24:10 +05:30
item_subselect.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_sum.cc MDEV-17857 Assertion `tmp != ((long long) 0x8000000000000000LL)' failed in TIME_from_longlong_datetime_packed upon SELECT with GROUP BY 2019-07-05 09:15:40 +04:00
item_sum.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_timefunc.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_timefunc.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
item_xmlfunc.cc MDEV-22744 *SAN: sql/item_xmlfunc.cc:791:43: runtime error: downcast of address ... which does not point to an object of type 'Item_func' note: object is of type 'Item_bool' (on optimized builds) 2020-05-29 15:31:24 +04:00
item_xmlfunc.h Merge branch '5.5' into 10.1 2019-07-25 13:27:11 +02:00
key.cc imporve clang build 2019-06-25 13:21:36 +03:00
key.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
keycaches.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
keycaches.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
lex.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
lex_symbol.h Update FSF Address 2019-05-11 21:29:06 +03:00
lock.cc imporve clang build 2019-06-25 13:21:36 +03:00
lock.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
log.cc MDEV-22717: Conditional jump or move depends on uninitialised value(s) in find_uniq_filename(char*, unsigned long) 2020-06-08 21:55:12 +05:30
log.h MDEV-20923:UBSAN: member access within address … which does not point to an object of type 'xid_count_per_binlog' 2020-01-29 16:33:05 +05:30
log_event.cc MDEV-22203: WSREP_ON is unnecessarily expensive to evaluate 2020-04-27 09:40:51 +03:00
log_event.h MDEV-21490: binlog tests fail with valgrind: Conditional jump or move depends on uninitialised value in sql_ex_info::init 2020-01-24 13:35:03 +05:30
log_event_old.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
log_event_old.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
log_slow.h Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
main.cc Update FSF Address 2019-05-11 21:29:06 +03:00
mdl.cc Update FSF Address 2019-05-11 21:29:06 +03:00
mdl.h Update FSF Address 2019-05-11 21:29:06 +03:00
mem_root_array.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
message.h Update FSF Address 2019-05-11 21:29:06 +03:00
message.mc
message.rc
mf_iocache.cc imporve clang build 2019-06-25 13:21:36 +03:00
mf_iocache_encr.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
MSG00001.bin
multi_range_read.cc Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
multi_range_read.h Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
my_apc.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
my_apc.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
my_decimal.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
my_decimal.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
my_json_writer.cc Merge branch '5.5' into 10.1 2019-06-12 22:54:46 +02:00
my_json_writer.h Merge branch '5.5' into 10.1 2019-06-12 22:54:46 +02:00
mysql_install_db.cc Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
mysql_upgrade_service.cc Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
mysqld.cc MDEV-22271 Excessive stack memory usage due to WSREP_LOG 2020-04-27 09:13:02 +02:00
mysqld.h MDEV-19614: Fix innodb_plugin on Windows 2019-05-28 15:24:32 +03:00
mysqld_suffix.h Update FSF Address 2019-05-11 21:29:06 +03:00
net_serv.cc imporve clang build 2019-06-25 13:21:36 +03:00
nt_servc.cc Windows : Fix server compile errors when compile with /Zc:strictStrings option 2017-02-28 12:57:33 +00:00
nt_servc.h Windows : Fix server compile errors when compile with /Zc:strictStrings option 2017-02-28 12:57:33 +00:00
opt_index_cond_pushdown.cc Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
opt_range.cc Merge branch '5.5' into 10.1 2020-04-30 17:36:41 +02:00
opt_range.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
opt_range_mrr.cc MDEV-21495: Conditional jump or move depends on uninitialised value in sel_arg_range_seq_next 2020-05-26 01:57:00 +05:30
opt_subselect.cc Merge branch 'github/5.5' into 10.1 2019-10-23 15:55:23 +02:00
opt_subselect.h Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
opt_sum.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
opt_table_elimination.cc Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
parse_file.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
parse_file.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
partition_element.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
partition_info.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
partition_info.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
password.c Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
plistsort.c imporve clang build 2019-06-25 13:21:36 +03:00
procedure.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
procedure.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
protocol.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
protocol.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
records.cc imporve clang build 2019-06-25 13:21:36 +03:00
records.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
repl_failsafe.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
repl_failsafe.h Update FSF Address 2019-05-11 21:29:06 +03:00
replication.h Update FSF Address 2019-05-11 21:29:06 +03:00
rpl_constants.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_filter.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_filter.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_gtid.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_gtid.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_handler.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_handler.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_injector.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_injector.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_mi.cc fix Galera memory leak 2019-07-08 17:04:18 +03:00
rpl_mi.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_parallel.cc MDEV-15152 Optimistic parallel slave doesnt cope well with START SLAVE UNTIL 2020-05-26 18:26:50 +03:00
rpl_parallel.h Merge 10.0 into 10.1 2017-03-03 13:27:12 +02:00
rpl_record.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_record.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_record_old.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_record_old.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_reporting.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_reporting.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_rli.cc MDEV-15152 Optimistic parallel slave doesnt cope well with START SLAVE UNTIL 2020-05-26 18:26:50 +03:00
rpl_rli.h MDEV-15152 Optimistic parallel slave doesnt cope well with START SLAVE UNTIL 2020-05-26 18:26:50 +03:00
rpl_tblmap.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_tblmap.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_utility.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_utility.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
scheduler.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
scheduler.h Update FSF Address 2019-05-11 21:29:06 +03:00
set_var.cc MDEV-22312: Bad error message for SET DEFAULT ROLE when user account is not granted the role 2020-05-28 17:08:40 +02:00
set_var.h MDEV-22312: Bad error message for SET DEFAULT ROLE when user account is not granted the role 2020-05-28 17:08:40 +02:00
signal_handler.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
slave.cc MDEV-15152 Optimistic parallel slave doesnt cope well with START SLAVE UNTIL 2020-05-26 18:26:50 +03:00
slave.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sp.cc MDEV-21341: Fix UBSAN failures: Issue Six 2020-01-14 18:15:32 +03:00
sp.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sp_cache.cc MDEV-21341: Fix UBSAN failures: Issue Six 2020-01-14 18:15:32 +03:00
sp_cache.h Update FSF Address 2019-05-11 21:29:06 +03:00
sp_head.cc MDEV-22763 backporting MDEV-20225 fix into 10.1 2020-06-03 15:34:44 +02:00
sp_head.h MDEV-21341: Fix UBSAN failures: Issue Six 2020-01-14 18:15:32 +03:00
sp_pcontext.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sp_pcontext.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sp_rcontext.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sp_rcontext.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
spatial.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
spatial.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_acl.cc MDEV-22755 CREATE USER leads to indirect SIGABRT in __stack_chk_fail () from fill_schema_user_privileges + *** stack smashing detected *** (on optimized builds) 2020-06-11 09:57:05 +04:00
sql_acl.h MDEV-22312: Bad error message for SET DEFAULT ROLE when user account is not granted the role 2020-05-28 17:08:40 +02:00
sql_admin.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_admin.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_alter.cc MDEV-19653 Add class Sql_cmd_create_table 2019-05-31 16:22:53 +04:00
sql_alter.h MDEV-19653 Add class Sql_cmd_create_table 2019-05-31 16:22:53 +04:00
sql_analyse.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_analyse.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_analyze_stmt.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_analyze_stmt.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_array.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_audit.cc MDEV-18661 loading the audit plugin causes performance regression. 2019-06-15 01:02:55 +04:00
sql_audit.h MDEV-18661 loading the audit plugin causes performance regression. 2019-06-15 01:02:55 +04:00
sql_base.cc MDEV-22579 No error when inserting DEFAULT(non_virtual_column) into a virtual column 2020-05-15 20:21:54 +04:00
sql_base.h Merge branch '5.5' into 10.1 2019-06-12 22:54:46 +02:00
sql_binlog.cc MDEV-22520 Assertion gathered_length == thd->lex->comment.length failed in binlog_defragment 2020-05-18 15:14:16 +03:00
sql_binlog.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_bitmap.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_bootstrap.cc Update FSF address 2019-05-11 19:25:02 +03:00
sql_bootstrap.h Update FSF address 2019-05-11 19:25:02 +03:00
sql_builtin.cc.in Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_cache.cc MDEV-5924: MariaDB could crash after changing the query_cache size 2020-06-10 09:35:38 +02:00
sql_cache.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_callback.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_class.cc Merge branch '5.5' into 10.1 2020-04-30 17:36:41 +02:00
sql_class.h Fix result of merge. 2020-06-23 13:42:11 +02:00
sql_client.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_cmd.h MDEV-19653 Add class Sql_cmd_create_table 2019-05-31 16:22:53 +04:00
sql_connect.cc MDEV-18661 loading the audit plugin causes performance regression. 2019-06-15 01:02:55 +04:00
sql_connect.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_const.h Merge 5.5 into 10.1 2019-05-28 11:25:45 +03:00
sql_crypt.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_crypt.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_cursor.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_cursor.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_db.cc imporve clang build 2019-06-25 13:21:36 +03:00
sql_db.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_delete.cc Merge branch '5.5' into 10.1 2019-07-25 13:27:11 +02:00
sql_delete.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_derived.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_derived.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_digest.cc Update FSF address 2019-05-11 19:25:02 +03:00
sql_digest.h Update FSF address 2019-05-11 19:25:02 +03:00
sql_digest_stream.h Update FSF address 2019-05-11 19:25:02 +03:00
sql_do.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_do.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_error.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_error.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_explain.cc Merge branch '5.5' into 10.1 2019-06-12 22:54:46 +02:00
sql_explain.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_expression_cache.cc Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
sql_expression_cache.h Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
sql_get_diagnostics.cc Update FSF address 2019-05-11 19:25:02 +03:00
sql_get_diagnostics.h Update FSF address 2019-05-11 19:25:02 +03:00
sql_handler.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_handler.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_help.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_help.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_hset.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_insert.cc Merge 5.5 into 10.1 2019-09-11 08:11:46 +03:00
sql_insert.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_join_cache.cc Merge branch '5.5' into 10.1 2019-06-12 22:54:46 +02:00
sql_join_cache.h Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
sql_lex.cc Merge branch '5.5' into 10.1 2020-04-30 17:36:41 +02:00
sql_lex.h MDEV-21341: Fix optimizer-related UBSAN failures, part #2 2019-12-18 12:56:54 +03:00
sql_lifo_buffer.h Update FSF address 2019-05-10 20:52:00 +03:00
sql_list.cc Update FSF Address 2019-05-11 21:29:06 +03:00
sql_list.h MDEV-19740: Fix C++11 violations caught by GCC 9.2.1 2019-10-14 16:37:41 +03:00
sql_load.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_load.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_locale.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_locale.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_manager.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_manager.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_parse.cc MDEV-22706: Assertion `!current' failed in PROFILING::start_new_query 2020-06-25 13:03:34 +05:30
sql_parse.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_partition.cc MDEV-16594 ALTER DATA DIRECTORY in PARTITIONS of InnoDB storage does nothing silently 2019-09-09 15:39:12 +04:00
sql_partition.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_partition_admin.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_partition_admin.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_plist.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_plugin.cc Merge branch '5.5' into 10.1 2019-07-25 13:27:11 +02:00
sql_plugin.h MDEV-18661 loading the audit plugin causes performance regression. 2019-06-15 01:02:55 +04:00
sql_plugin_compat.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_plugin_services.ic Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_prepare.cc MDEV-21341: Fix UBSAN failures: Issue Six 2020-01-14 18:15:32 +03:00
sql_prepare.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_priv.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_profile.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_profile.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_reload.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_reload.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_rename.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_rename.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_repl.cc MDEV-20428: "Start binlog_dump" message doesn't indicate GTID position 2020-06-16 11:08:24 +05:30
sql_repl.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_select.cc Revert "MDEV-22830: SQL_CALC_FOUND_ROWS not working properly for single SELECT for DUAL" 2020-06-10 09:34:56 +02:00
sql_select.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_servers.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_servers.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_show.cc MDEV-22941 Assertion `idx < array.elements' failed in Dynamic_array<st_mysql_const_lex_string*>::at 2020-06-19 16:04:45 +04:00
sql_show.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_signal.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_signal.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_sort.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_state.c Update FSF Address 2019-05-11 21:29:06 +03:00
sql_statistics.cc Thread safe histograms loading 2020-05-29 21:53:54 +04:00
sql_statistics.h Thread safe histograms loading 2020-05-29 21:53:54 +04:00
sql_string.cc imporve clang build 2019-06-25 13:21:36 +03:00
sql_string.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_table.cc MDEV-22203: WSREP_ON is unnecessarily expensive to evaluate 2020-04-27 09:40:51 +03:00
sql_table.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_tablespace.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_tablespace.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_test.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_test.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_time.cc Fix clang 10 warnings 2020-04-27 09:40:34 +03:00
sql_time.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_trigger.cc MDEV-22763 backporting MDEV-20225 fix into 10.1 2020-06-03 15:34:44 +02:00
sql_trigger.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_truncate.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_truncate.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_type.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_type.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_type_int.h MDEV-21977 main.func_math fails due to undefined behaviour 2020-03-20 15:24:06 +04:00
sql_udf.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_udf.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_union.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_union.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_update.cc Merge branch '5.5' into 10.1 2019-06-12 22:54:46 +02:00
sql_update.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_view.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_view.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_yacc.yy MDEV-21341: Fix UBSAN failures: Issue Six 2020-01-14 18:15:32 +03:00
strfunc.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
strfunc.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
structs.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sys_vars.cc MDEV-22715: SIGSEGV in radixsort_for_str_ptr and in native_compare/my_qsort2 (optimized builds) 2020-06-05 01:11:03 +05:30
sys_vars.ic Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sys_vars_shared.h Update FSF Address 2019-05-11 21:29:06 +03:00
table.cc Thread safe histograms loading 2020-05-29 21:53:54 +04:00
table.h Thread safe histograms loading 2020-05-29 21:53:54 +04:00
table_cache.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
table_cache.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
thr_malloc.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
thr_malloc.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
threadpool.h Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
threadpool_common.cc MDEV-18661 loading the audit plugin causes performance regression. 2019-06-15 01:02:55 +04:00
threadpool_unix.cc Merge branch '5.5' into 10.1 2020-01-03 10:36:23 +01:00
threadpool_win.cc Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
transaction.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
transaction.h Update FSF Address 2019-05-11 21:29:06 +03:00
tzfile.h Update FSF Address 2019-05-11 21:29:06 +03:00
tztime.cc MDEV-21209 : mysql_tzinfo_to_sql's Galera checks do not work 2019-12-05 12:41:13 +02:00
tztime.h Update FSF Address 2019-05-11 21:29:06 +03:00
udf_example.c Update FSF Address 2019-05-11 21:29:06 +03:00
udf_example.def
uniques.cc MDEV-22728: SIGFPE in Unique::get_cost_calc_buff_size from prepare_search_best_index_intersect on optimized builds 2020-06-07 04:19:58 +05:30
unireg.cc MDEV-22111 ERROR 1064 & 1033 and SIGSEGV on CREATE TABLE w/ various charsets on 10.4/5 optimized builds | Assertion `(uint) (table_check_constraints - share->check_constraints) == (uint) (share->table_check_constraints - share->field_check_constraints)' failed 2020-05-22 07:47:49 +04:00
unireg.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
win_tzname_data.h MDEV-22419 update windows timezone data from using newest ICU source 2020-04-30 01:21:44 +02:00
winservice.c Merge branch '5.5' into 10.1 2019-05-11 19:15:57 +03:00
winservice.h Update FSF address 2019-05-10 20:52:00 +03:00
wsrep_applier.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_applier.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_binlog.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_binlog.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_check_opts.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_dummy.cc MDEV-22271 Excessive stack memory usage due to WSREP_LOG 2020-04-27 09:13:02 +02:00
wsrep_hton.cc MDEV-22763 backporting MDEV-20225 fix into 10.1 2020-06-03 15:34:44 +02:00
wsrep_mysqld.cc MDEV-22763 backporting MDEV-20225 fix into 10.1 2020-06-03 15:34:44 +02:00
wsrep_mysqld.h MDEV-22203: WSREP_ON is unnecessarily expensive to evaluate 2020-04-27 09:40:51 +03:00
wsrep_mysqld_c.h Update FSF address 2019-05-11 19:25:02 +03:00
wsrep_notify.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_priv.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_sst.cc MDEV-20420: SST failed after MDEV-18863 in some test configurations 2019-08-26 13:41:06 +02:00
wsrep_sst.h MDEV-18863: Galera SST scripts can't read [mysqldN] option groups 2019-08-19 23:43:16 +02:00
wsrep_thd.cc MDEV-22763 backporting MDEV-20225 fix into 10.1 2020-06-03 15:34:44 +02:00
wsrep_thd.h MDEV-22763 backporting MDEV-20225 fix into 10.1 2020-06-03 15:34:44 +02:00
wsrep_utils.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_utils.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_var.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_var.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_xid.cc Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
wsrep_xid.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00