mariadb/sql
Jacob Mathew 6c47c1c456 MDEV-16912: Spider Order By column[datatime] limit 5 returns 3 rows
The problem occurs in 10.2 and earlier releases of MariaDB Server because the
Partition Engine was not pushing the engine conditions to the underlying
storage engine of each partition.  This caused Spider to return the first 5
rows in the table with the data provided by the customer.  2 of the 5 rows
did not qualify the WHERE clause, so they were removed from the result set by
the server.

To fix the problem, I have back-ported support for engine condition pushdown
in the Partition Engine from MariaDB Server 10.3.

Author:
  Jacob Mathew.

Reviewer:
  Kentoku Shiba.

Cherry-Picked:
  Commit eb2ca3d on branch bb-10.2-MDEV-16912
2018-09-13 13:27:03 -07:00
..
share Merge branch '10.0' into bb-10.1-merge-sanja 2018-07-25 22:24:40 +02:00
add_errmsg
authors.h MDEV-6821, MDEV-6826 - Update authors and contributors 2016-02-04 16:00:11 +02:00
bounded_queue.h Correct FSF address 2017-03-10 18:21:29 +01:00
client_settings.h MDEV-9346 - The federatedx and spider engine make mysqld crash when they are 2016-02-16 18:40:04 +04:00
CMakeLists.txt Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
compat56.cc
compat56.h
contributors.h Update contributors 2018-04-05 14:23:18 +04:00
create_options.cc Correct FSF address 2017-03-10 18:21:29 +01:00
create_options.h Correct FSF address 2017-03-10 18:21:29 +01:00
custom_conf.h Updated/added copyright headers 2014-01-06 10:52:35 +05:30
datadict.cc MDEV-12633 Error from valgrind related to dd_frm_type 2017-11-02 17:05:53 +02:00
datadict.h cleanup: change dd_frm_type() to return the engine name, not legacy_db_type 2017-03-10 18:21:23 +01:00
debug_sync.cc MDEV-13179 main.errors fails with wrong errno 2017-08-07 03:48:58 +03:00
debug_sync.h Fixed failing test cases and compiler warnings 2016-04-25 15:37:24 +03:00
derror.cc Merge branch '10.0' into 10.1 2016-08-25 12:40:09 +02:00
derror.h
des_key_file.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
des_key_file.h
discover.cc MDEV-6262 analyze the coverity report on mariadb 2017-05-19 20:26:56 +02:00
discover.h 10.0-monty merge 2013-07-21 16:39:19 +02:00
encryption.cc MDEV-12863 No table can be created after second encryption plugin attempted to load 2017-08-08 14:52:08 +02:00
event_data_objects.cc Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-05-07 13:49:14 +03:00
event_data_objects.h compiler warnings 2014-10-01 23:38:26 +02:00
event_db_repository.cc Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-05-07 13:49:14 +03:00
event_db_repository.h MDEV-7281 EVENT: CREATE OR REPLACE 2015-02-27 13:34:18 +04:00
event_parse_data.cc - Renaming variables so that they don't shadow others (After this patch one can compile with -Wshadow and get much fewer warnings) 2015-07-06 20:24:14 +03:00
event_parse_data.h compiler warnings 2014-10-01 23:38:26 +02:00
event_queue.cc Fix spelling: occurred, execute, which etc 2016-03-04 02:09:37 +02:00
event_queue.h 5.2 merge 2014-03-16 21:03:01 +01:00
event_scheduler.cc Merge 10.0 into 10.1 2017-03-03 13:27:12 +02:00
event_scheduler.h 10.0-base merge 2014-02-26 15:28:07 +01:00
events.cc Merge branch '10.0-galera' into 10.1 2018-09-07 15:25:27 +02:00
events.h Merge branch '10.0' into 10.1 2015-11-19 15:52:14 +01:00
field.cc Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
field.h Revert MDEV-9519 due to regressions 2018-08-31 12:36:31 +03:00
field_conv.cc Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
filesort.cc Merge branch '10.0' into 10.1 2017-12-20 13:30:05 +02:00
filesort.h MDEV-7836: ANALYZE FORMAT=JSON should provide info about GROUP/ORDER BY 2015-04-12 04:48:42 +03:00
filesort_utils.cc Merge branch '10.0' into 10.1 2017-12-20 13:30:05 +02:00
filesort_utils.h MDEV-5173 Cppcheck report 2014-03-19 09:58:06 +01:00
gcalc_slicescan.cc Correct FSF address 2017-03-10 18:21:29 +01:00
gcalc_slicescan.h Correct FSF address 2017-03-10 18:21:29 +01:00
gcalc_tools.cc Correct FSF address 2017-03-10 18:21:29 +01:00
gcalc_tools.h Correct FSF address 2017-03-10 18:21:29 +01:00
gen_lex_hash.cc MDEV-9987 - gen_lex_hash leaks memory, making LeakSanitizer builds fail 2016-04-26 16:15:15 +04:00
gen_lex_token.cc Merge branch '10.0' into 10.1 2015-09-03 12:58:41 +02:00
group_by_handler.cc Correct FSF address 2017-03-10 18:21:29 +01:00
group_by_handler.h Correct FSF address 2017-03-10 18:21:29 +01:00
gstream.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
gstream.h 5.2 merge 2014-03-16 21:03:01 +01:00
ha_partition.cc MDEV-16912: Spider Order By column[datatime] limit 5 returns 3 rows 2018-09-13 13:27:03 -07:00
ha_partition.h MDEV-16912: Spider Order By column[datatime] limit 5 returns 3 rows 2018-09-13 13:27:03 -07:00
handler.cc Merge branch '10.0-galera' into 10.1 2018-09-07 15:25:27 +02:00
handler.h Fix -Wclass-memaccess in WSREP,InnoDB,XtraDB 2018-08-03 12:21:13 +03:00
hash_filo.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
hash_filo.h List<>-style template wrapper over hash_filo 2014-03-19 09:57:09 +01:00
hostname.cc fixes MDEV-11354 twin include 2016-12-06 02:29:52 +05:30
hostname.h
init.cc MDEV-8378 - Debian: the Lintian complains about many "shlib-calls-exit" in many 2015-12-16 19:39:00 +04:00
init.h
innodb_priv.h MDEV-11663 Create services for functionality used by plugins 2017-04-27 19:12:38 +02:00
item.cc Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
item.h MDEV-16820 Lost 'Impossible where' from query with inexpensive subquery 2018-07-24 23:53:12 -07:00
item_buff.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
item_cmpfunc.cc Merge branch '10.0' into 10.1 2018-08-21 10:07:26 +02:00
item_cmpfunc.h Merge branch '10.0' into 10.1 2018-08-21 10:07:26 +02:00
item_create.cc MDEV-6152: Remove calls to current_thd while creating Item 2015-09-01 18:42:02 +03:00
item_create.h Moving Item::str_value from public to protected. 2014-09-03 01:56:21 +04:00
item_func.cc Merge tag 'mariadb-5.5.61' into 5.5-galera 2018-08-01 10:58:38 +03:00
item_func.h Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-05-07 13:49:14 +03:00
item_geofunc.cc MDEV-12705 10.1.18-MariaDB-1~jessie - mysqld got signal 11. 2017-10-07 14:17:45 +04:00
item_geofunc.h Merge remote-tracking branch '10.0' into 10.1 2017-06-21 16:19:43 +03:00
item_inetfunc.cc MDEV-14116 INET6_NTOA output is set as null to varchar(39) variable 2017-11-07 21:57:42 +04:00
item_inetfunc.h Merge remote-tracking branch 'origin/10.0' into 10.1 2017-11-09 14:05:53 +04:00
item_row.cc Merge branch '10.0' into 10.1 2018-05-05 14:01:59 +02:00
item_row.h Merge remote-tracking branch 'origin/10.0' into 10.1 2017-11-09 14:05:53 +04:00
item_strfunc.cc Merge branch '10.0' into bb-10.1-merge-sanja 2018-07-25 22:24:40 +02:00
item_strfunc.h Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-05-07 13:49:14 +03:00
item_subselect.cc MDEV-6439: Server crashes in Explain_union::print_explain with explain in slow log, tis620 charset 2018-08-15 15:25:14 +03:00
item_subselect.h Merge remote-tracking branch 'origin/10.0' into 10.1 2017-11-09 14:05:53 +04:00
item_sum.cc Merge branch '10.0' into 10.1 2018-05-05 14:01:59 +02:00
item_sum.h Merge 10.0 into 10.1 2017-05-20 08:41:20 +03:00
item_timefunc.cc A 32bit cleanup for MDEV-14452 Precision in INTERVAL xxx DAY_MICROSECOND parsed wrong? 2018-03-15 10:23:42 +04:00
item_timefunc.h Merge branch '10.0' into 10.1 2017-10-22 13:03:41 +02:00
item_xmlfunc.cc Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
item_xmlfunc.h Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
key.cc Merge branch '10.0' into 10.1 2018-08-21 10:07:26 +02:00
key.h 10.0-base merge 2014-02-26 15:28:07 +01:00
keycaches.cc Merge 10.0-galera into 10.1 2015-02-06 16:14:23 +01:00
keycaches.h cleanup: more 'const' qualifiers 2014-10-10 22:27:41 +02:00
lex.h Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
lex_symbol.h Updated/added copyright headers 2014-01-06 10:52:35 +05:30
lock.cc Merge tag 'mariadb-10.0.32' into 10.0-galera 2017-08-09 08:56:11 +03:00
lock.h MDEV-7004 - Merge scalability fixes from 10.0-power 2014-12-05 11:01:49 +04:00
log.cc compiler warnings (clang 4.0.1 on i386) 2018-09-04 09:19:48 +02:00
log.h MDEV-10715 Galera: Replicate MariaDB GTID to other nodes in the cluster 2017-12-25 13:57:42 +05:30
log_event.cc Merge branch '10.0-galera' into 10.1 2018-09-07 15:25:27 +02:00
log_event.h MDEV-11319 mysqlbinlog crashes or fails with out of memory while reading some encrypted binlogs 2016-12-06 09:45:50 +01:00
log_event_old.cc Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-05-07 13:49:14 +03:00
log_event_old.h Remove THD argment from Log_event->net_send() and Protocol::pack_info() as 2015-10-22 17:00:58 +03:00
log_slow.h Correct FSF address 2017-03-10 18:21:29 +01:00
main.cc
mdl.cc Fixed compiler warning 2018-03-26 17:53:17 +03:00
mdl.h Cleanup: MDL_context::wsrep_get_thd() is no longer needed 2016-09-01 12:53:44 -04:00
mem_root_array.h MDEV-9764: MariaDB does not limit memory used for range optimization 2016-05-31 17:59:04 +03:00
message.h CRLF->LF 2015-06-02 22:07:47 +02:00
message.mc
message.rc CRLF->LF 2015-06-02 22:07:47 +02:00
mf_iocache.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
mf_iocache_encr.cc MDEV-10259 mysqld crash with certain statement length and... 2018-05-22 13:47:42 +05:30
MSG00001.bin
multi_range_read.cc Merge branch '10.0' into 10.1 2017-08-08 10:18:43 +02:00
multi_range_read.h Correct FSF address 2017-03-10 18:21:29 +01:00
my_apc.cc Correct FSF address 2017-03-10 18:21:29 +01:00
my_apc.h Correct FSF address 2017-03-10 18:21:29 +01:00
my_decimal.cc Adding "const" qualifier to arguments of date2my_decimal() 2015-10-22 09:11:23 +04:00
my_decimal.h Adding "const" qualifier to arguments of date2my_decimal() 2015-10-22 09:11:23 +04:00
my_json_writer.cc Correct FSF address 2017-03-10 18:21:29 +01:00
my_json_writer.h Correct FSF address 2017-03-10 18:21:29 +01:00
mysql_install_db.cc Merge branch '10.0' into 10.1 2018-06-12 18:55:27 +03:00
mysql_upgrade_service.cc Merge branch '10.0' into 10.1 2018-06-12 18:55:27 +03:00
mysqld.cc MDEV-15436: If log_bin and log_bin_index is different SST with rsync fails. 2018-09-05 10:34:36 +03:00
mysqld.h MDEV-15436: If log_bin and log_bin_index is different SST with rsync fails. 2018-09-05 10:34:36 +03:00
mysqld_suffix.h
net_serv.cc Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01: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 Correct FSF address 2017-03-10 18:21:29 +01:00
opt_range.cc Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
opt_range.h MDEV-8779: mysqld got signal 11 in sql/opt_range_mrr.cc:100(step_down_to) 2015-09-21 17:08:27 +03:00
opt_range_mrr.cc Correct FSF address 2017-03-10 18:21:29 +01:00
opt_subselect.cc Fix gcc 7.3 compiler warnings. 2018-08-03 14:37:55 +02:00
opt_subselect.h Correct FSF address 2017-03-10 18:21:29 +01:00
opt_sum.cc MDEV-13459 Warnings, when compiling with gcc-7.x 2017-10-17 07:37:39 +02:00
opt_table_elimination.cc Correct FSF address 2017-03-10 18:21:29 +01:00
parse_file.cc MDEV-6152: Remove calls to current_thd while creating Item 2015-08-27 22:21:08 +03:00
parse_file.h Merge branch '10.0' into 10.1 2016-09-28 17:55:28 +02:00
partition_element.h mysql-5.1.73 merge 2014-03-15 18:24:15 +01:00
partition_info.cc fix compilation wih -DPLUGIN_PARTITION=NO 2018-02-21 17:48:25 +01:00
partition_info.h Merge branch '10.0' into 10.1 2017-12-20 13:30:05 +02:00
password.c thd_rnd service 2017-03-10 18:21:27 +01:00
plistsort.c Correct FSF address 2017-03-10 18:21:29 +01:00
procedure.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
procedure.h MDEV-8010 - Avoid sql_alloc() in Items (Patch #1) 2015-08-21 10:40:39 +04:00
protocol.cc Merge branch '10.0' into 10.1 2018-08-21 10:07:26 +02:00
protocol.h Remove THD argment from Log_event->net_send() and Protocol::pack_info() as 2015-10-22 17:00:58 +03:00
records.cc Merge branch '10.0' into 10.1 2017-08-08 10:18:43 +02:00
records.h Fixed MDEV-8408 2015-10-23 18:49:02 +03:00
repl_failsafe.cc MDEV-6152: Remove calls to current_thd while creating Item 2015-08-27 22:21:08 +03:00
repl_failsafe.h
replication.h MDEV-162 Enhanced semisync replication 2014-12-23 14:16:32 +01:00
rpl_constants.h MDEV-8264 encryption for binlog 2015-09-04 10:33:55 +02:00
rpl_filter.cc Merge branch '10.0' into 10.1 2016-12-11 09:53:42 +01:00
rpl_filter.h MDEV-6676: Optimistic parallel replication 2015-02-07 09:42:58 +01:00
rpl_gtid.cc MDEV-12012/MDEV-11969 Can't remove GTIDs for a stale GTID Domain ID 2017-11-15 22:26:32 +02:00
rpl_gtid.h MDEV-12012/MDEV-11969 Can't remove GTIDs for a stale GTID Domain ID 2017-11-15 22:26:32 +02:00
rpl_handler.cc Merge branch '10.0' into 10.1 2017-08-08 10:18:43 +02:00
rpl_handler.h MDEV-162 Enhanced semisync replication 2014-12-23 14:16:32 +01:00
rpl_injector.cc Merge branch '10.0' into 10.1 2015-11-19 15:52:14 +01:00
rpl_injector.h Merge branch '10.1' of github.com:MariaDB/server into 10.1 2015-07-09 14:47:32 +03:00
rpl_mi.cc Merge tag 'mariadb-10.0.32' into 10.0-galera 2017-08-09 08:56:11 +03:00
rpl_mi.h MDEV-9544 FLUSH [RELAY] LOGS does not rotate logs for a named slave 2017-06-05 13:11:10 +05:30
rpl_parallel.cc MDEV-13179 main.errors fails with wrong errno 2017-08-07 03:48:58 +03:00
rpl_parallel.h Merge 10.0 into 10.1 2017-03-03 13:27:12 +02:00
rpl_record.cc Merge 10.0 into 10.1 2017-01-04 13:56:11 +02:00
rpl_record.h MDEV-11636 Extra persistent columns on slave always gets NULL in RBR 2017-01-01 16:45:44 +05:30
rpl_record_old.cc remove unneded #include's that had a dubious explanation 2015-10-24 19:58:34 +02:00
rpl_record_old.h 5.2 merge 2014-03-16 21:03:01 +01:00
rpl_reporting.cc Merge branch '5.5' into 10.0 2016-02-15 22:50:59 +01:00
rpl_reporting.h MDEV-6120: When slave stops with error, error message should indicate the failing GTID 2014-06-25 15:17:03 +02:00
rpl_rli.cc Merge branch '10.0' into 10.1 2017-08-08 10:18:43 +02:00
rpl_rli.h Merge branch '10.0' into 10.1 2017-08-08 10:18:43 +02:00
rpl_tblmap.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
rpl_tblmap.h
rpl_utility.cc MDEV-9560 Mariadb 10.1 Crashes when replicating from 10.0 2016-02-23 10:46:16 +01:00
rpl_utility.h MDEV-6120: When slave stops with error, error message should indicate the failing GTID 2014-06-25 15:17:03 +02:00
scheduler.cc comment spelling Initailize -> Initialize 2015-12-11 15:21:42 +01:00
scheduler.h MDEV-5706 MariaDB does not build on hurd-i386 2014-07-25 14:15:33 +02:00
set_var.cc MDEV-9516 type error when setting session variable 2016-03-22 00:09:04 +04:00
set_var.h Fix wsrep.variables test case 2018-06-13 08:57:15 +03:00
signal_handler.cc Merge branch '10.0' into 10.1 2017-01-16 03:18:14 +02:00
slave.cc Merge branch '10.0-galera' into 10.1 2018-06-12 19:39:37 +03:00
slave.h Merge 10.0 into 10.1 2017-03-03 13:27:12 +02:00
sp.cc Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-05-07 13:49:14 +03:00
sp.h Fix for bug#11759114 - '51401: GRANT TREATS NONEXISTENT 2017-02-27 12:35:10 +01:00
sp_cache.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
sp_cache.h mysql-5.1.73 merge 2014-03-15 18:24:15 +01:00
sp_head.cc Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
sp_head.h MDEV-14857: problem with 10.2.11 server crashing when executing stored procedure 2018-02-01 09:51:47 +01:00
sp_pcontext.cc MDEV-6152: Remove calls to current_thd while creating Item 2015-08-27 22:21:08 +03:00
sp_pcontext.h parser cleanup: don't store field properties in LEX, use Create_field directly 2014-12-04 16:09:34 +01:00
sp_rcontext.cc MDEV-13179 main.errors fails with wrong errno 2017-08-07 03:48:58 +03:00
sp_rcontext.h MDEV-7943 - pthread_getspecific() takes 0.76% in OLTP RO 2015-05-13 15:56:56 +04:00
spatial.cc Merge branch '10.0' into 10.1 2017-08-08 10:18:43 +02:00
spatial.h Moving ST_RELATE() implementation out of Item_func_precise_spatial_rel, 2015-06-26 15:42:49 +04:00
sql_acl.cc Fix gcc 7.3 compiler warnings. 2018-08-03 14:37:55 +02:00
sql_acl.h Merge branch '10.0' into 10.1 2017-10-22 13:03:41 +02:00
sql_admin.cc Merge tag 'mariadb-10.0.36' into 10.0-galera 2018-08-02 11:44:02 +03:00
sql_admin.h MDEV-8450: PATCH] Wrong macro expansion in Query_cache::send_result_to_client() 2015-09-06 22:26:33 +02:00
sql_alter.cc Merge branch '10.0-galera' into 10.1 2018-09-07 15:25:27 +02:00
sql_alter.h MDEV-6390 CONVERT TO CHARACTER SET utf8 doesn't change DEFAULT CHARSET. 2017-02-26 23:01:23 +04:00
sql_analyse.cc MDEV-6152: Remove calls to current_thd while creating Item 2015-08-27 22:21:08 +03:00
sql_analyse.h MDEV-8010 - Avoid sql_alloc() in Items (Patch #1) 2015-08-21 10:40:39 +04:00
sql_analyze_stmt.cc MDEV-16191: Analyze format=json gives incorrect value for r_limit inside a dependent 2018-06-09 19:04:51 +05:30
sql_analyze_stmt.h Correct FSF address 2017-03-10 18:21:29 +01:00
sql_array.h - Renaming variables so that they don't shadow others (After this patch one can compile with -Wshadow and get much fewer warnings) 2015-07-06 20:24:14 +03:00
sql_audit.cc MDEV-9998 Fix issues caught by Clang's -Wpointer-bool-conversion warning 2017-05-15 22:23:10 +02:00
sql_audit.h Merge with 10.0-base 2014-03-13 16:43:11 +02:00
sql_base.cc MDEV-15845 Test failure on galera.galera_concurrent_ctas 2018-09-12 12:56:24 +03:00
sql_base.h Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
sql_binlog.cc base64 service 2017-03-10 18:21:27 +01:00
sql_binlog.h
sql_bitmap.h MDEV-9021: MYSQLD SEGFAULTS WHEN BUILT USING --WITH-MAX-INDEXES=128 2015-11-09 09:28:00 -05:00
sql_bootstrap.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
sql_bootstrap.h
sql_builtin.cc.in Push forgotten file change to fix compiler errors. 2015-02-19 12:41:10 +02:00
sql_cache.cc Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-05-07 13:49:14 +03:00
sql_cache.h MDEV-10777: Server crashed due to query_cache_info plugin 2016-09-27 14:11:37 +02:00
sql_callback.h
sql_class.cc Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
sql_class.h Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
sql_client.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
sql_cmd.h small cleanup 2015-06-27 09:40:56 +02:00
sql_connect.cc MDEV-16005 sporadic failures with galera tests MW-328B and MW-328C 2018-04-24 16:57:39 +03:00
sql_connect.h
sql_const.h Adjust table_open_cache to avoid getting error 24 (too many open files) 2018-03-26 17:53:17 +03:00
sql_crypt.cc MDEV-5120 Test suite test maria-no-logging fails 2014-09-30 20:31:14 +03:00
sql_crypt.h
sql_cursor.cc Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
sql_cursor.h
sql_db.cc MDEV-12230 include/my_sys.h:600:43: error: unknown type name ‘PSI_file_key’" when -DWITHOUT_SERVER=1 2017-04-20 16:36:23 +02:00
sql_db.h MDEV-7280 DATABASE: CREATE OR REPLACE 2014-12-10 08:13:08 +04:00
sql_delete.cc Merge tag 'mariadb-10.0.36' into 10.0-galera 2018-08-02 11:44:02 +03:00
sql_delete.h MWL#205 DELETE with result set (mdev-3814) 2013-08-06 13:31:38 -07:00
sql_derived.cc Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
sql_derived.h MDEV-6668: Server crashes in check_view_single_update on concurrent DDL/DML flow with views and triggers 2015-01-29 15:12:32 +02:00
sql_digest.cc Silence bogus GCC 7 warnings -Wimplicit-fallthrough 2017-05-17 08:27:04 +03:00
sql_digest.h merge commit 02b00b154 2015-10-24 20:06:59 +02:00
sql_digest_stream.h perfschema 5.6.24 2015-05-05 15:23:47 +02:00
sql_do.cc Merge branch '10.0' into 10.1 2017-10-22 13:03:41 +02:00
sql_do.h
sql_error.cc Merge branch '10.0' into 10.1 2015-11-19 15:52:14 +01:00
sql_error.h Adding "const" qualifier to arguments of date2my_decimal() 2015-10-22 09:11:23 +04:00
sql_explain.cc Fix gcc 7.3 compiler warnings. 2018-08-03 14:37:55 +02:00
sql_explain.h MDEV-14857: problem with 10.2.11 server crashing when executing stored procedure 2018-02-01 09:51:47 +01:00
sql_expression_cache.cc Correct FSF address 2017-03-10 18:21:29 +01:00
sql_expression_cache.h Correct FSF address 2017-03-10 18:21:29 +01:00
sql_get_diagnostics.cc Stage 2 of MDEV-6152: 2015-08-21 10:40:51 +04:00
sql_get_diagnostics.h
sql_handler.cc Merge branch '10.0' into 10.1 2018-06-12 18:55:27 +03:00
sql_handler.h Merge remote-tracking branch 'mysql/5.5' into 5.5 2015-10-08 22:54:24 +02:00
sql_help.cc Merge branch '10.0' into 10.1 2016-06-28 22:01:55 +02:00
sql_help.h
sql_hset.h find() method for Hash_set<>. 2013-10-18 12:36:03 -07:00
sql_insert.cc Merge tag 'mariadb-10.0.36' into 10.0-galera 2018-08-02 11:44:02 +03:00
sql_insert.h MDEV-11698 Old Bug possibly not fixed; BEFORE INSERT Trigger on NOT NULL 2017-01-17 20:16:09 +01:00
sql_join_cache.cc Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
sql_join_cache.h Correct FSF address 2017-03-10 18:21:29 +01:00
sql_lex.cc Merge branch '5.5' into 10.0 2018-08-15 16:48:13 +02:00
sql_lex.h Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
sql_lifo_buffer.h Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
sql_list.cc
sql_list.h Merge branch '10.0' into 10.1 2018-08-21 10:07:26 +02:00
sql_load.cc Merge branch '10.0' into 10.1 2017-10-22 13:03:41 +02:00
sql_load.h
sql_locale.cc Merge branch '10.0' into 10.1 2016-05-04 15:23:26 +02:00
sql_locale.h MDEV-10052 Illegal mix of collations with DAYNAME(date_field)<>varchar_field 2016-05-10 19:13:06 +04:00
sql_manager.cc remove unneded #include's that had a dubious explanation 2015-10-24 19:58:34 +02:00
sql_manager.h
sql_parse.cc Merge branch '10.0-galera' into 10.1 2018-09-07 15:25:27 +02:00
sql_parse.h Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-08-02 13:13:21 +03:00
sql_partition.cc Fix gcc 7.3 compiler warnings. 2018-08-03 14:37:55 +02:00
sql_partition.h Merge branch '10.0' into 10.1 2017-10-22 13:03:41 +02:00
sql_partition_admin.cc Merge tag 'mariadb-10.0.35' into 10.0-galera 2018-05-07 17:20:39 +03:00
sql_partition_admin.h
sql_plist.h merge 10-base->10.0 2013-11-11 23:40:53 +02:00
sql_plugin.cc Fix another double WSREP_ISOLATION_BEGIN merge error 2018-06-20 11:10:27 +02:00
sql_plugin.h MDEV-9312: storage engine not enforced during galera cluster replication 2016-09-28 13:26:13 -04:00
sql_plugin_compat.h
sql_plugin_services.ic fix failures of innodb_plugin tests in --embedded 2018-09-04 09:19:50 +02:00
sql_prepare.cc MDEV-12060 Crash in EXECUTE IMMEDIATE with an expression returning a GRANT command 2018-06-12 10:41:25 +04:00
sql_prepare.h MDEV-5314 - Compiling fails on OSX using clang 2014-02-19 14:05:15 +04:00
sql_priv.h Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-05-07 13:49:14 +03:00
sql_profile.cc Merge branch '10.0' into 10.1 2015-11-19 15:52:14 +01:00
sql_profile.h MDEV-7999 - PROFILING routines take 0.2% when profiling disabled 2015-05-13 10:43:13 +04:00
sql_reload.cc MDEV-15890 Strange error message if you try to FLUSH TABLES <view> after LOCK TABLES <view>. 2018-09-02 09:24:33 +04:00
sql_reload.h MySQL WL#5522 - InnoDB transportable tablespaces. 2014-02-02 10:06:29 +01:00
sql_rename.cc Merge remote-tracking branch 'origin/10.0' into 10.1 2018-05-24 11:08:02 +03:00
sql_rename.h
sql_repl.cc MDEV-14014 Multi-Slave Replication Fail: bogus data in log event 2018-06-28 15:47:03 +02:00
sql_repl.h MDEV-12012/MDEV-11969 Can't remove GTIDs for a stale GTID Domain ID 2017-11-15 22:26:32 +02:00
sql_select.cc MDEV-17155: Incorrect ORDER BY optimization: full index scan is used instead of range 2018-09-12 16:58:30 +03:00
sql_select.h Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
sql_servers.cc MDEV-9088 Server crashes on shutdown after the second post of feedback report 2015-12-19 13:36:21 +01:00
sql_servers.h cleanup: freshen up CREATE SERVER code 2014-12-04 10:41:51 +01:00
sql_show.cc Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
sql_show.h Merge tag 'mariadb-10.0.26' into 10.0-galera 2016-06-24 12:01:22 -04:00
sql_signal.cc MDEV-6152: Remove calls to current_thd while creating Item 2015-09-01 18:42:02 +03:00
sql_signal.h
sql_sort.h 5.2 merge 2014-03-16 21:03:01 +01:00
sql_state.c mysql-5.5.37 selective merge 2014-03-27 22:26:58 +01:00
sql_statistics.cc Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
sql_statistics.h Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
sql_string.cc Fix type mismatch 2018-05-29 08:55:07 +03:00
sql_string.h Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
sql_table.cc Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
sql_table.h Merge branch '10.0' into 10.1 2016-08-25 12:40:09 +02:00
sql_tablespace.cc - Renaming variables so that they don't shadow others (After this patch one can compile with -Wshadow and get much fewer warnings) 2015-07-06 20:24:14 +03:00
sql_tablespace.h
sql_test.cc Merge branch '10.0' into 10.1 2015-09-03 12:58:41 +02:00
sql_test.h
sql_time.cc Merge branch '10.0' into 10.1 2018-08-21 10:07:26 +02:00
sql_time.h MDEV-10524 Assertion `arg1_int >= 0' failed in Item_func_additive_op::result_precision() 2016-12-19 14:28:08 +04:00
sql_trigger.cc Merge branch '10.0-galera' into 10.1 2018-09-07 15:25:27 +02:00
sql_trigger.h MDEV-8605 MariaDB not use DEFAULT value even when inserted NULL for NOT NULLABLE column 2015-12-21 21:30:54 +01:00
sql_truncate.cc MDEV-15890 Strange error message if you try to FLUSH TABLES <view> after LOCK TABLES <view>. 2018-09-02 09:24:33 +04:00
sql_truncate.h 5.5.38 merge 2014-06-06 00:07:27 +02:00
sql_type.cc MDEV-8912 Wrong metadata or type for @c:=string_or_blob_field 2015-10-07 20:19:29 +04:00
sql_type.h Fixed compiler warnings and errors 2015-10-09 13:01:07 +03:00
sql_udf.cc make sql_udf.cc to shorten dlerror() messages 2017-03-10 18:21:26 +01:00
sql_udf.h Merge branch '10.0' into 10.1 2015-12-21 21:24:22 +01:00
sql_union.cc Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
sql_union.h
sql_update.cc Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-05-07 13:49:14 +03:00
sql_update.h MDEV-8701 Crash on derived query 2015-11-06 17:56:56 +01:00
sql_view.cc Merge branch '10.0-galera' into 10.1 2018-06-12 19:39:37 +03:00
sql_view.h Merge tag 'mariadb-10.0.19' into 10.1 2015-06-01 15:51:25 +02:00
sql_yacc.yy Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
strfunc.cc 10.0-base merge 2014-02-26 15:28:07 +01:00
strfunc.h
structs.h Merge branch '10.0' into 10.1 2017-12-20 13:30:05 +02:00
sys_vars.cc Revert MDEV-9519 due to regressions 2018-08-31 12:36:31 +03:00
sys_vars.ic Merge branch '10.0' into 10.1 2017-01-16 03:18:14 +02:00
sys_vars_shared.h
table.cc Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
table.h Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
table_cache.cc Merge branch '11.0' into 10.1 2018-09-06 22:45:19 +02:00
table_cache.h - Renaming variables so that they don't shadow others (After this patch one can compile with -Wshadow and get much fewer warnings) 2015-07-06 20:24:14 +03:00
thr_malloc.cc - Renaming variables so that they don't shadow others (After this patch one can compile with -Wshadow and get much fewer warnings) 2015-07-06 20:24:14 +03:00
thr_malloc.h
threadpool.h Correct FSF address 2017-03-10 18:21:29 +01:00
threadpool_common.cc Correct FSF address 2017-03-10 18:21:29 +01:00
threadpool_unix.cc MDEV-13179 main.errors fails with wrong errno 2017-08-07 03:48:58 +03:00
threadpool_win.cc MDEV-13179 main.errors fails with wrong errno 2017-08-07 03:48:58 +03:00
transaction.cc Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
transaction.h Updated/added copyright headers 2014-01-06 10:52:35 +05:30
tzfile.h
tztime.cc Merge tag 'mariadb-10.0.36' into 10.0-galera 2018-08-02 11:44:02 +03:00
tztime.h
udf_example.c Merge remote-tracking branch 'mysql/5.5' into bb-5.5-merge @ mysql-5.5.42 2015-02-11 23:50:40 +01:00
udf_example.def
uniques.cc Merge branch '10.0' into 10.1 2017-09-19 12:06:50 +03:00
unireg.cc Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
unireg.h MDEV-11663 Create services for functionality used by plugins 2017-04-27 19:12:38 +02:00
winservice.c Correct FSF address 2017-03-10 18:21:29 +01:00
winservice.h Correct FSF address 2017-03-10 18:21:29 +01:00
wsrep_applier.cc MDEV-16005 sporadic failures with galera tests MW-328B and MW-328C 2018-04-24 16:57:39 +03:00
wsrep_applier.h Correct FSF address 2017-03-10 18:21:29 +01:00
wsrep_binlog.cc MDEV-16777: galera.galera_gra_log fails with File ...GRA_*.log not found error 2018-07-19 12:07:07 +03:00
wsrep_binlog.h Merge branch '10.0-galera' into bb-10.1-serg 2016-08-25 15:39:39 -04:00
wsrep_check_opts.cc MDEV-15409 make sure every sst script is tested in buildbot 2018-03-23 00:55:20 +01:00
wsrep_dummy.cc fix failures of innodb_plugin tests in --embedded 2018-09-04 09:19:50 +02:00
wsrep_hton.cc Merge branch '10.0-galera' into 10.1 2018-09-07 15:25:27 +02:00
wsrep_mysqld.cc Merge branch '10.0-galera' into 10.1 2018-09-07 15:25:27 +02:00
wsrep_mysqld.h Merge branch '10.0-galera' into 10.1 2018-09-07 15:25:27 +02:00
wsrep_notify.cc Correct FSF address 2017-03-10 18:21:29 +01:00
wsrep_priv.h Merge branch '10.0-galera' into 10.1 2018-06-12 19:39:37 +03:00
wsrep_sst.cc MDEV-15436: If log_bin and log_bin_index is different SST with rsync fails. 2018-09-05 10:34:36 +03:00
wsrep_sst.h MDEV-15436: If log_bin and log_bin_index is different SST with rsync fails. 2018-09-05 10:34:36 +03:00
wsrep_thd.cc Revert MDEV-9519 due to regressions 2018-08-31 12:36:31 +03:00
wsrep_thd.h Improve performance for calculating memory allocation 2015-02-01 15:24:22 +02:00
wsrep_utils.cc Merge remote-tracking branch 'origin/5.5-galera' into 10.0-galera 2018-05-07 13:49:14 +03:00
wsrep_utils.h Merge remote-tracking branch 'origin/10.0-galera' into 10.1 2017-08-21 13:35:00 +03:00
wsrep_var.cc Merge branch '10.0-galera' into 10.1 2018-09-07 15:25:27 +02:00
wsrep_var.h refs MW-245 - merged wsrep_dirty_reads and wsrep_reject_queries from PXC 2018-03-20 12:10:41 +02:00
wsrep_xid.cc Fix -Wclass-memaccess in WSREP,InnoDB,XtraDB 2018-08-03 12:21:13 +03:00
wsrep_xid.h compilation failures on Windows 2015-07-23 10:55:24 +02:00