mariadb/mysql-test/r
Sergei Golubchik 8d99166c69 MDEV-11640 gcol.gcol_select_myisam fails in buildbot on Power
JOIN_CACHE's were initialized in  check_join_cache_usage()
from make_join_readinfo(). After that make_join_readinfo() was looking
whether it's possible to use keyread. Later, after make_join_readinfo(),
optimizer decided whether to use filesort. And even later, at the
execution time, from join_read_first(), keyread was actually enabled.

The problem is, that if a query uses a vcol, base columns that it
depends on are automatically added to the read_set - because they're
needed to calculate the vcol. But if we're doing keyread, vcol is taken
from the index, not calculated, and base columns do not need to  be
in the read set (even should not be - as they aren't getting values).

The bug was that JOIN_CACHE used read_set with base columns,
they were not read because of keyread, so it was caching garbage.

So read_set is only known after the keyread was decided. And after the
filesort was decided, as filesort doesn't use keyread. But
check_join_cache_usage() needs to be done in make_join_readinfo(),
as the code below depends on these checks,

Fix: keep JOIN_CACHE checks where they were, but move initialization
down to the very end of JOIN::optimize_inner. If keyread was enabled,
update the read_set to include only columns that are part of the index.
Copy the keyread logic from join_read_first() to happen at optimize time.
2017-02-13 18:12:14 +01:00
..
1st.result 10.0-base merge (roles) 2013-10-29 15:08:44 +01:00
aborted_clients.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
adddate_454.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
alias.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
almost_full.result
alter_table-big.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
alter_table.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
alter_table_autoinc-5574.result MDEV-5574 Set AUTO_INCREMENT below max value of column. 2014-02-01 09:33:26 +01:00
alter_table_mdev539_maria.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
alter_table_mdev539_myisam.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
alter_table_online.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
alter_table_trans.result 5.5 merge 2014-05-09 12:35:11 +02:00
alter_user.result [MDEV-7978] Post review fixes and cleanups. 2016-03-08 16:55:17 +02:00
analyze.result MDEV-9590: Always print "Engine-independent statistic" warnings and might be filtering columns unintentionally from engines 2016-03-21 11:48:04 +01:00
analyze_format_json.result Merge branch '10.1' into 10.2 2017-02-10 17:01:45 +01:00
analyze_stmt.result [MDEV-8063]: Fix incorrect commit. 2015-05-19 12:04:09 +00:00
analyze_stmt_orderby.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
analyze_stmt_privileges.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
analyze_stmt_privileges2.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
analyze_stmt_slow_query_log.result MDEV-7558 analyze_stmt_slow_query_log fails sporadically in buildbot 2016-12-21 22:40:52 +02:00
ansi.result
assign_key_cache-5405.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
auth_named_pipe.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
auth_rpl.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
auto_increment.result
auto_increment_ranges_innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
auto_increment_ranges_myisam.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
bad_frm_crash_5029.result MDEV-5029 Crash in MariaDB 5.5.33 with .frm from older MariaDB release 2013-09-18 17:25:10 +02:00
bench_count_distinct.result
big_test.require
bigint.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
binary.result
blackhole.result Merge branch '5.5' into 10.0 2015-05-04 22:00:24 +02:00
blackhole_plugin.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
bool.result
bootstrap.result MDEV-7635: Additional test fixes 2017-02-10 06:30:42 -05:00
bug39022.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
bug46760.result do not quote numbers in the DEFAULT clause in SHOW CREATE 2016-08-27 16:59:11 +02:00
bug47671.result
bug58669.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
bug12427262.result MDEV-10138 Support for decimals up to 38 digits 2016-06-22 22:04:55 +03:00
bug13633383.result MDEV-8466 CAST works differently for DECIMAL/INT vs DOUBLE for empty strings 2015-09-17 11:05:07 +04:00
bulk_replace.result
cache_innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
cache_temporal_4265.result MDEV-10524 Assertion `arg1_int >= 0' failed in Item_func_additive_op::result_precision() 2016-12-19 14:28:08 +04:00
case.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
case_insensitive_file_system.require
case_insensitive_fs.require
case_sensitive_file_system.require
cast.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
change_user.result reset @@TIMESTAMP for COM_CHANGE_USER 2016-06-04 09:06:00 +02:00
change_user_notembedded.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
check.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
check_constraint.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
check_var_limit.require
client_xml.result
comment_column.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
comment_column2.result clarify the error message for frm size overflow 2016-08-27 16:59:12 +02:00
comment_index.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
comment_table.result
comments.result 5.5 merge 2014-02-25 16:04:35 +01:00
commit.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
commit_1innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
compare.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
compound.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
compress.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
concurrent_innodb_safelog.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
concurrent_innodb_unsafelog.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
connect.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
connect2.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
consistent_snapshot.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
constraints.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
contributors.result Update contributors 2016-09-19 12:31:19 +04:00
count_distinct.result
count_distinct2.result
count_distinct3.result
crash_commit_before.result
create-big.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
create-uca.result do not quote numbers in the DEFAULT clause in SHOW CREATE 2016-08-27 16:59:11 +02:00
create.result Merge branch 'bb-10.2-serg-merge' into 10.2 2017-02-11 09:45:34 +01:00
create_delayed.result
create_drop_binlog.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
create_drop_db.result MDEV-7280 DATABASE: CREATE OR REPLACE 2014-12-10 08:13:08 +04:00
create_drop_event.result MDEV-7281 EVENT: CREATE OR REPLACE 2015-02-27 13:34:18 +04:00
create_drop_function.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
create_drop_index.result clarify ER_CANT_DROP_FIELD_OR_KEY 2016-07-02 14:52:20 +02:00
create_drop_procedure.result MDEV-7283 UDF: CREATE OR REPLACE, CREATE IF NOT EXISTS, DROP IF EXISTS 2014-12-15 17:41:15 +04:00
create_drop_role.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
create_drop_server.result MDEV-726 - added regression test case 2016-10-09 01:20:17 +02:00
create_drop_trigger.result MDEV-6112 multiple triggers per table 2016-10-05 01:11:07 +03:00
create_drop_udf.result Fixing test failures caused by the previous commits. 2014-12-16 15:31:25 +04:00
create_drop_user.result Merge branch '10.0' into 10.1 2015-09-03 12:58:41 +02:00
create_drop_view.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
create_not_windows.result
create_or_replace.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
create_or_replace2.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
create_or_replace_permission.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
create_select_tmp.result
create_user.result [MDEV-7978] Implement alter user and tested create user 2016-03-08 16:55:17 +02:00
create_w_max_indexes_64.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
create_w_max_indexes_128.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
cte_grant.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
cte_nonrecursive.result Fixed bug mdev-11818. 2017-01-18 21:03:01 -08:00
cte_recursive.result MDEV-7635: Renamed standards_compliant_cte to standard_compliant_cte 2017-02-10 06:30:42 -05:00
ctype_ascii.result
ctype_big5.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_binary.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_collate.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_cp850.result MDEV-9862 Illegal mix of collation, when comparing column with CASE expression 2016-04-02 00:04:47 +04:00
ctype_cp932.result MDEV-9711 NO PAD collations 2016-09-06 12:50:02 +04:00
ctype_cp932_binlog_row.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
ctype_cp932_binlog_stm.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_cp1250_ch.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_cp1251.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_create.result MDEV-7387 [PATCH] Alter table xxx CHARACTER SET utf8, CONVERT TO CHARACTER SET latin1 should fail 2015-03-13 16:12:54 +04:00
ctype_errors.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
ctype_eucjpms.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_euckr.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_filename.result Merge branch '10.0' into 10.1 2015-12-21 21:24:22 +01:00
ctype_filesystem.result
ctype_gb2312.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_gbk.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_gbk_binlog.result
ctype_gbk_export_import.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
ctype_hebrew.result
ctype_latin1.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_latin1_de.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_latin2.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_latin2_ch.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_ldml.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_like_range.result store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
ctype_many.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_mb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_nopad_8bit.result MDEV-9711 NO PAD collations 2016-09-06 12:50:02 +04:00
ctype_partitions.result MDEV-6255 DUPLICATE KEY Errors on SELECT .. GROUP BY that uses temporary and filesort. 2014-09-11 22:42:35 +03:00
ctype_recoding.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_sjis.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_swe7.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_tis620.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_uca.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_uca_innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_uca_partitions.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
ctype_ucs.result Merge branch '10.1' into 10.2 2017-02-10 17:01:45 +01:00
ctype_ucs2_def.result Merge remote-tracking branch 'origin/5.5' into 10.0 2017-01-06 17:09:59 +02:00
ctype_ucs2_query_cache.result Merge remote-tracking branch 'origin/5.5' into 10.0 2017-01-06 17:09:59 +02:00
ctype_ucs2_uca.result MDEV-10877 xxx_unicode_nopad_ci collations 2016-09-23 14:19:07 +04:00
ctype_ujis.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_ujis_ucs2.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_upgrade.result generalize ER_TABLE_NEEDS_UPGRADE to work for views too 2015-06-01 16:01:23 +02:00
ctype_utf8.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_utf8_uca.result MDEV-10877 xxx_unicode_nopad_ci collations 2016-09-23 14:19:07 +04:00
ctype_utf8mb4.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_utf8mb4_heap.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_utf8mb4_innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_utf8mb4_myisam.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_utf8mb4_uca.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_utf16.result Merge branch '10.1' into 10.2 2017-02-10 17:01:45 +01:00
ctype_utf16_def.result Merge remote-tracking branch 'origin/5.5' into 10.0 2017-01-06 17:09:59 +02:00
ctype_utf16_uca.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_utf16le.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ctype_utf32.result Merge branch '10.1' into 10.2 2017-02-10 17:01:45 +01:00
ctype_utf32_uca.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
date_formats.result MDEV-4511 Assertion `scale <= precision' fails on GROUP BY TIMEDIFF with incorrect types 2014-04-24 16:59:01 +04:00
datetime_456.result
ddl_i18n_koi8r.result MDEV-6112 multiple triggers per table 2016-10-05 01:11:07 +03:00
ddl_i18n_utf8.result MDEV-6112 multiple triggers per table 2016-10-05 01:11:07 +03:00
deadlock_innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
debug_sync.result MDEV-11227 - mysqlimport -l doesn't issue UNLOCK TABLES 2016-12-21 13:18:45 +04:00
default.result MDEV-10352 Server crashes in Field::set_default on CREATE TABLE 2017-02-13 18:12:04 +01:00
default_debug.result Race condition in DEFAULT() with expressions 2017-02-13 18:12:04 +01:00
default_session.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
default_storage_engine.result
delayed.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
delete.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
delete_returning.result extract privilege tests from delete_returning.test into delete_returning_grant.test 2013-09-25 19:41:53 +02:00
delete_returning_grant.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
deprecated_features.result
derived.result MDEV-10554: Assertion `!derived->first_select()->exclude_from_table_unique_test || derived->outer_select()-> exclude_from_table_unique_test' failed in TABLE_LIST::set_check_merged() 2017-02-10 10:22:03 +01:00
derived_cond_pushdown.result Fixed bug mdev-11820. 2017-01-24 13:12:20 -08:00
derived_opt.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
derived_view.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
dirty_close.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
distinct.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
drop-no_root.result
drop.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
drop_bad_db_type.result fix an old bug where dd_frm_type() could incorrectly determine the table type 2013-08-28 22:16:13 +02:00
drop_debug.result
dyncol.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
empty_server_name-8224.result Fixed mysqltest run failure: 2015-08-13 01:28:15 +03:00
empty_table.result Don't increment 'Empty_queries' for queries with errors. 2016-09-15 22:02:32 +03:00
empty_user_table.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
endspace.result
enforce_storage_engine.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
enforce_storage_engine_opt.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
engine_error_in_alter-8453.result MDEV-8453 Alter table not returning engine errors 2015-11-16 07:55:55 +01:00
error_simulation.result Merge branch '5.5' into 10.0 2015-02-18 15:16:27 +01:00
errors.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
events_1.result Merge branch '10.1' into 10.2 2016-06-30 16:38:05 +02:00
events_2.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
events_bugs.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
events_embedded.result
events_grant.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
events_logs_tests.result MDEV-4865 Change related to --log option/variable was merged partially 2013-08-13 13:35:36 +02:00
events_microsec.result
events_restart.result Allow mysql_upgrade to enable event after table is corrected 2015-10-21 16:31:11 +03:00
events_scheduling.result
events_slowlog.result Merge remote-tracking branch 'origin/5.5' into 10.0 2017-01-06 17:09:59 +02:00
events_stress.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
events_time_zone.result
events_trans.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
events_trans_notembedded.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
execution_constants.result
explain.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
explain_json.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
explain_json_format_partitions.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
explain_json_innodb.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
explain_non_select.result Fix for MDEV-8321, MDEV-6223 2015-10-06 15:54:37 +03:00
explain_slowquerylog.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
ext_key_noPK_6794.result MDEV-6794 XtraDB no longer using UNIQUE as clustered index when PK missing 2014-11-18 22:26:14 +01:00
failed_auth_3909.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
failed_auth_unixsocket.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
fast_prefix_index_fetch_innodb.result MDEV-6929: Port Facebook Prefix Index Queries Optimization 2014-11-03 11:18:52 +02:00
features.result MDEV-6112 multiple triggers per table 2016-10-05 01:11:07 +03:00
file_contents.result Merge branch '10.0' into 10.1 2015-03-07 13:21:02 +01:00
filesort_bad_i_s-7585.result MDEV-7585 Assertion `thd->is_error() || kill_errno || thd->killed == ABORT_QUERY' failed in ha_rows filesort 2015-04-27 15:42:12 +02:00
filesort_debug.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
fix_priv_tables.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
flush-innodb-notembedded.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
flush-innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
flush.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
flush2.result test suite for compressed binlog event 2016-10-19 20:20:47 +02:00
flush_block_commit.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
flush_block_commit_notembedded.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
flush_read_lock.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
flush_read_lock_kill.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
flush_table.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
foreign_key.result
frm_bad_row_type-7333.result 5.5 merge 2015-01-21 12:03:02 +01:00
fulltext.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
fulltext2.result
fulltext3.result MDEV-9986 Full-text search of the utf8mb4 column causes crash 2016-04-26 12:58:14 +02:00
fulltext_cache.result
fulltext_charsets.result MDEV-11241 Certain combining marks cause MariaDB to crash when doing Full-Text searches 2016-12-03 22:03:38 +01:00
fulltext_derived_4257.result
fulltext_derived_4316.result
fulltext_distinct.result MDEV-7563 Support CHECK constraint as in (or close to) SQL Standard 2016-06-30 11:43:02 +02:00
fulltext_left_join.result
fulltext_multi.result
fulltext_order_by.result MDEV-334: Backport of UNION ALL optimization from mysql-5.7. 2014-10-14 09:36:50 -07:00
fulltext_update.result MDEV-7563 Support CHECK constraint as in (or close to) SQL Standard 2016-06-30 11:43:02 +02:00
fulltext_var.result
func_analyse.result MDEV-10103 Disallow syntactically UNION SELECT .. PROCEDURE ANALYSE() 2016-05-24 14:18:46 +04:00
func_compress.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
func_concat.result
func_crypt.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
func_date_add.result Corrected a test from func_date_add.test 2016-12-20 00:42:46 -08:00
func_default.result fix: CREATE TABLE (col TIMESTAMP(6) DEFAULT NOW(2)) 2016-08-27 16:59:12 +02:00
func_des_encrypt.result
func_digest.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
func_encrypt.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
func_encrypt_nossl.result
func_encrypt_ucs2.result
func_equal.result Another attempt to fix bug mdev-5103. 2013-11-21 15:19:25 -08:00
func_gconcat.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_group.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
func_group_innodb.result Fixed the problem of mdev-5947. 2014-04-22 14:39:57 -07:00
func_hybrid_type.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_if.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
func_in.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_isnull.result
func_json.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_like.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_math.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_misc.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_op.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
func_regexp.result MDEV-5820 MySQL Bug #54805 definitions in regex/my_regex.h conflict with /usr/include/regex.h 2014-03-20 23:26:50 +01:00
func_regexp_pcre.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_regexp_pcre_debug.result MDEV-8102 REGEXP function fails to match hex values when expression is stored as a variable 2015-05-14 14:43:37 +04:00
func_rollback.result
func_sapdb.result 10.0-base merge. 2013-09-21 10:14:42 +02:00
func_set.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_str.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_system.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_test.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
func_time.result Merge branch 'bb-10.2-serg-merge' into 10.2 2017-02-11 09:45:34 +01:00
func_time_hires.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
func_timestamp.result
func_weight_string.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
function_defaults.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
function_defaults_innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
function_defaults_notembedded.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
gcc296.result
get_diagnostics.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
gis-alter_table_online.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
gis-debug.result better ER_VIRTUAL_COLUMN_FUNCTION_IS_NOT_ALLOWED 2016-06-30 11:43:02 +02:00
gis-json.result MDEV-11042 Implement GeoJSON functions. 2017-01-24 22:39:55 +04:00
gis-precise.result MDEV-8466 CAST works differently for DECIMAL/INT vs DOUBLE for empty strings 2015-09-17 11:05:07 +04:00
gis-rt-precise.result
gis-rtree.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
gis.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
gis2.result
grant.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
grant2.result Merge branch '10.1' into 10.2 2016-09-09 08:33:08 +02:00
grant3.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
grant4.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
grant5.result Post-merge: Update test results 2016-06-30 23:56:18 -04:00
grant_4332.result MDEV-10138 Support for decimals up to 38 digits 2016-06-22 22:04:55 +03:00
grant_cache_no_prot.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
grant_cache_ps_prot.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
grant_explain_non_select.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
grant_lowercase.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
grant_lowercase_fs.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
greedy_optimizer.result Removed depricated optimizer_search_depth. 2015-11-19 10:56:30 +01:00
group_by.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
group_by_innodb.result Merge branch '10.0' into 10.1 2016-12-11 09:53:42 +01:00
group_by_null.result MDEV-5461 Assertion `length <= column->length' fails in write_block_record with functions in select list, GROUP BY, ORDER BY 2014-01-26 21:49:19 +01:00
group_min_max.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
group_min_max_innodb.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
handler_read_last.result Added new status variables to make it easier to debug certain problems: 2016-08-21 20:18:39 +03:00
handlersocket.result Identical key derivation code in XtraDB/InnoDB/Aria 2015-05-15 18:12:01 +02:00
have_compress.require
have_geometry.require
have_local_infile.require
have_log_bin.require
have_met_timezone.require
have_moscow_leap_timezone.require
have_outfile.require
have_perror.require
have_pool_of_threads.require
have_profiling.require
have_query_cache.require
have_symlink.require
have_utf8mb4.require
have_utf16.require
have_utf32.require
have_working_dns.require
having.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
help.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
host_cache_size_functionality.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
huge_frm-6224.result MDEV-6224 Incorrect information in file when *.frm is > 256K 2014-07-08 19:38:26 +02:00
implicit_char_to_num_conversion.result
implicit_commit.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
in_datetime_241.result
index_intersect.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
index_intersect_innodb.result fix main.index_intersect_innodb failure on trusty-amd64 2016-09-21 10:03:16 +02:00
index_merge_innodb.result Merge branch '10.1' into 10.2 2017-02-10 17:01:45 +01:00
index_merge_myisam.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
information_schema-big.result MDEV-7171 funcs_1.is_tables_is and main.information_schema-big fail in buildbot. 2014-11-24 12:25:56 +04:00
information_schema.result enable tests that were skipped because of have_xtradb 2016-12-29 13:23:49 +01:00
information_schema2.result MDEV-8796 Delete with sub query with information_schema.TABLES deletes too many rows 2015-10-08 10:01:43 +02:00
information_schema_all_engines.result enable tests that were skipped because of have_xtradb 2016-12-29 13:23:49 +01:00
information_schema_chmod.result
information_schema_db.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
information_schema_inno.result MDEV-9307 - provide info about DATA/INDEX directory in INFORMATION_SCHEMA.TA 2016-02-22 12:48:03 +01:00
information_schema_linux.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
information_schema_parameters.result do not quote numbers in the DEFAULT clause in SHOW CREATE 2016-08-27 16:59:11 +02:00
information_schema_part.result Merge branch '10.1' into 10.2 2017-02-10 17:01:45 +01:00
information_schema_routines.result Part of MDEV-10134 Add full support for DEFAULT 2016-06-30 11:43:02 +02:00
information_schema_stats.result MDEV-10428 main.information_schema_stats fails sporadically in buildbot 2016-07-25 01:57:00 +03:00
init_connect.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
init_connection_query_cache.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
init_file.result
init_file_longline_3816.result
init_file_set_password-7656.result MDEV-7656 init_file option does not allow changing passwords 2015-10-22 07:23:59 +02:00
innodb_bug878769.result
innodb_ext_key.result Merge branch '10.0' into 10.1 2016-08-25 12:40:09 +02:00
innodb_group.result MDEV-10556 Assertion `0' failed in virtual void Item_sum_field::set_result_field(Field*) 2016-09-21 09:13:33 +04:00
innodb_icp.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
innodb_ignore_builtin.result
innodb_load_xa.result Merge branch '10.0' into 10.1 2015-09-03 12:58:41 +02:00
innodb_mrr_cpk.result Ensure that fields declared with NOT NULL doesn't have DEFAULT values if not specified and if not timestamp or auto_increment 2015-08-18 11:18:57 +03:00
innodb_mysql_lock.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
innodb_mysql_lock2.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
innodb_mysql_sync.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
innodb_utf8.result
insert.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
insert_innodb.result Merge branch 'mysql/5.5' into 5.5 2016-06-14 13:55:28 +02:00
insert_notembedded.result MDEV-11227 - mysqlimport -l doesn't issue UNLOCK TABLES 2016-12-21 13:18:45 +04:00
insert_select.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
insert_update.result MDEV-11698 Old Bug possibly not fixed; BEFORE INSERT Trigger on NOT NULL 2017-01-17 20:16:09 +01:00
insert_update_autoinc-7150.result MDEV-7150 Wrong auto increment values on INSERT .. ON DUPLICATE KEY UPDATE when the inserted columns include NULL in an auto-increment column 2014-12-18 00:13:16 +01:00
ipv4_and_ipv6.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
ipv4_as_ipv6.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
ipv6.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
join.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
join_cache.result MDEV-11640 gcol.gcol_select_myisam fails in buildbot on Power 2017-02-13 18:12:14 +01:00
join_crash.result
join_nested.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
join_nested_jcl6.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
join_optimizer.result
join_outer.result MDEV-11640 gcol.gcol_select_myisam fails in buildbot on Power 2017-02-13 18:12:14 +01:00
join_outer_innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
join_outer_jcl6.result MDEV-11640 gcol.gcol_select_myisam fails in buildbot on Power 2017-02-13 18:12:14 +01:00
key.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
key_cache.result MDEV-7184 main.key_cache fails in buildbot on Windows 32bit 2015-01-19 14:07:51 +01:00
key_diff.result
key_primary.result
keywords.result MDEV-9979 Keywords UNBOUNDED, PRECEDING, FOLLOWING, TIES, OTHERS should be non-reserved 2017-01-31 23:41:10 +04:00
kill-2.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
kill.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
kill_processlist-6619.result MDEV-9945 - main.kill_processlist-6619 fails sporadically 2016-06-14 14:44:09 +04:00
kill_query-6728.result MDEV-6728 KILL QUERY executed on an idle connection can interrupt the next query 2015-01-19 14:07:41 +01:00
last_value.result MDEV-10138 Support for decimals up to 38 digits 2016-06-22 22:04:55 +03:00
limit.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
limit_rows_examined.result MDEV-11640 gcol.gcol_select_myisam fails in buildbot on Power 2017-02-13 18:12:14 +01:00
loaddata.result Merge branch 'bb-10.2-serg-merge' into 10.2 2017-02-11 09:45:34 +01:00
loaddata_autocom_innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
loadxml.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
locale.result Merge branch '5.5' into bb-10.0 2016-06-21 14:11:02 +02:00
lock.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
lock_multi.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
lock_multi_bug38499.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
lock_multi_bug38691.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
lock_sync.result MDEV-11227 - mysqlimport -l doesn't issue UNLOCK TABLES 2016-12-21 13:18:45 +04:00
lock_tables_lost_commit.result MDEV-11227 - mysqlimport -l doesn't issue UNLOCK TABLES 2016-12-21 13:18:45 +04:00
locked_temporary-5955.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
log_errchk.result Merge branch '5.5' into 10.0 2015-05-04 22:00:24 +02:00
log_slow.result Merge branch 'bb-10.2-serg-merge' into 10.2 2017-02-11 09:45:34 +01:00
log_state.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
log_state_bug33693.result
log_tables-big.result
log_tables.result store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
log_tables_debug.result
log_tables_upgrade.result Merge branch '5.5' into 10.0 2015-05-04 22:00:24 +02:00
long_tmpdir.result
lowercase0.require
lowercase1.require
lowercase2.require
lowercase_fs_off.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
lowercase_fs_on.result backport include/search_pattern_in_file.inc from 10.1 2016-10-26 18:44:34 +02:00
lowercase_mixed_tmpdir.result
lowercase_mixed_tmpdir_innodb.result
lowercase_table.result MDEV-5850: MySQL Bug#21317: SHOW CREATE DATABASE does not obey to lower_case_table_names 2014-03-23 15:43:57 +02:00
lowercase_table2.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
lowercase_table4.result fix lowercase* tests labrador 2015-10-15 00:55:57 +02:00
lowercase_table5.result MDEV-5850: MySQL Bug#21317: SHOW CREATE DATABASE does not obey to lower_case_table_names 2014-03-23 15:43:57 +02:00
lowercase_table_grant.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
lowercase_table_qcache.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
lowercase_utf8.result
lowercase_view.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
max_statement_time.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
mdev-504.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
mdev316.result
mdev375.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
mdev6830.result fix a couple of dbug tests not to write to /tmp 2016-04-19 11:27:00 +02:00
mdl_sync.result MDEV-7660 - MySQL WL#6671 "Improve scalability by not using thr_lock.c locks 2016-11-03 16:35:15 +04:00
merge-big.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
merge.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
merge_debug.result misc after-merge changes: 2016-09-10 16:04:44 +02:00
merge_innodb.result Bug#20691429 ASSERTION `CHILD_L' FAILED IN STORAGE/MYISAMMRG/HA_MYISAMMRG.CC:631 2016-02-09 11:28:59 +01:00
merge_mmap.result
metadata.result MDEV-10138 Support for decimals up to 38 digits 2016-06-22 22:04:55 +03:00
mix2_myisam.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
mix2_myisam_ucs2.result
mrr_derived_crash_4610.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
mrr_icp_extra.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
multi_statement.result
multi_update.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
multi_update2.result
multi_update_innodb.result enable tests that were skipped because of have_xtradb 2016-12-29 13:23:49 +01:00
multi_update_tiny_hash.result
myisam-big.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
myisam-blob.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
myisam-optimize.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
myisam-system.result bump the VERSION to 10.1.6 and related changes 2015-06-28 12:09:18 +02:00
myisam.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
myisam_crash_before_flush_keys.result
myisam_debug.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
myisam_enable_keys-10506.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
myisam_explain_non_select_all.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
myisam_icp.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
myisam_icp_notembedded.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
myisam_mrr.result
myisam_optimize.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
myisam_recover.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
myisampack.result 5.5.38 merge 2014-06-06 00:07:27 +02:00
mysql-bug41486.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
mysql-bug45236.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
mysql.result Merge branch '10.0-galera' into 10.1 2016-11-02 13:44:07 +01:00
mysql57_virtual.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
mysql5613mysql.result store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
mysql_binary_mode.result
mysql_client_test.result
mysql_client_test_comp.result Fixed assert in perfschema/pfs.cc::start_idle_wait_v1 when using performance schema and big packets in debug version. 2014-07-19 13:38:40 +03:00
mysql_client_test_nonblock.result
mysql_comments.result MDEV-6112 multiple triggers per table 2016-10-05 01:11:07 +03:00
mysql_cp932.result
mysql_embedded.result
mysql_locale_posix.result
mysql_not_windows.result mysqltest: don't eat new lines in --exec 2016-10-14 01:12:04 +02:00
mysql_plugin.result Bug#21973610: BUFFER OVERFLOW ISSUES 2015-11-07 22:03:47 +05:30
mysql_protocols.result
mysql_tzinfo_to_sql_symlink.result Merge tag 'mariadb-10.0.20' into 10.1 2015-06-27 20:35:26 +02:00
mysql_upgrade-6984.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
mysql_upgrade.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
mysql_upgrade_no_innodb.result Merge branch '5.5' into 10.0 2015-05-04 22:00:24 +02:00
mysql_upgrade_ssl.result Merge branch '5.5' into 10.0 2015-05-04 22:00:24 +02:00
mysql_upgrade_view.result Merge branch '10.0' into 10.1 2016-02-23 21:35:05 +01:00
mysqladmin.result
mysqlbinlog-innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
mysqlbinlog.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
mysqlbinlog_raw_mode.result MDEV-9792 Backport MDEV-8713 to 10.1. 2016-04-27 11:08:46 +04:00
mysqlbinlog_row_big.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
mysqlbinlog_row_compressed.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
mysqlbinlog_row_minimal.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
mysqlbinlog_stmt_compressed.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
mysqlcheck.result MDEV-6112 multiple triggers per table 2016-10-05 01:11:07 +03:00
mysqld--defaults-file.result
mysqld--help,win.rdiff MDEV-7635: Additional test fixes 2017-02-10 06:30:42 -05:00
mysqld--help.result Merge branch 'bb-10.2-serg-merge' into 10.2 2017-02-11 09:45:34 +01:00
mysqld_help_crash-9183.result MDEV-9183 MariaDB 10.1 crash on mysqld --verbose --help 2015-12-19 13:59:29 +01:00
mysqld_option_err.result MDEV-9969 mysql_install_db error processing ignore_db_dirs. 2016-06-18 10:46:55 +04:00
mysqldump-compat.result
mysqldump-max.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
mysqldump-nl.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
mysqldump-no-binlog.result
mysqldump.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
mysqldump_restore.result
mysqlhotcopy_myisam.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
mysqlshow.result
mysqlslap.result merge 5.5 -> 10.0-base 2013-09-25 21:07:06 +03:00
mysqltest.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
mysqltest_256.result
mysqltest_cont_on_error.result
mysqltest_ps.result Part of MDEV-10134 Add full support for DEFAULT 2016-06-30 11:43:02 +02:00
named_pipe.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
negation_elimination.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
no-threads.result
no_binlog.result
non_blocking_api.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
not_embedded_server.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
not_partition.result MDEV-5823 MySQL bug#11760213-52599: ALTER TABLE REMOVE PARTITIONING ON NON-PARTITIONED TABLE CORRUPTS MYISAM 2014-03-21 14:05:44 +01:00
not_staging.require
not_true.require
not_valgrind.require
not_windows.require
null.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
null_key.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
odbc.result
olap.result
old-mode.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
one_thread_per_connection.require
openssl_1.result Merge branch '10.1' into 10.2 2016-09-09 08:33:08 +02:00
openssl_6975,tlsv10.result MDEV-9293 - Use MariaDB's Connector/C in server 2016-08-25 16:27:57 +02:00
openssl_6975,tlsv12.result MDEV-9293 - Use MariaDB's Connector/C in server 2016-08-25 16:27:57 +02:00
order_by.result Merge branch 'bb-10.2-serg-merge' into 10.2 2017-02-11 09:45:34 +01:00
order_by_innodb.result MDEV-9457: Poor query plan chosen for ORDER BY query by a recent 10.1 2016-01-24 16:59:41 +03:00
order_by_optimizer.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
order_by_optimizer_innodb.result Merge InnoDB 5.7 from mysql-5.7.9. 2016-09-02 13:22:28 +03:00
order_by_sortkey.result MDEV-6430: It is impossible to see if "filesort with small limit" optimization was used 2014-07-09 13:09:41 +04:00
order_by_zerolength-4285.result MDEV-7635: Additional test fixes 2017-02-10 06:30:42 -05:00
order_fill_sortbuf.result
outfile.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
outfile_loaddata.result Backport from trunk: 2014-04-23 17:01:35 +02:00
overflow.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
packet.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
parser.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
parser_bug21114_innodb.result
parser_not_embedded.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
parser_precedence.result MDEV-9143 JSON_xxx functions. 2016-10-25 10:09:33 +04:00
parser_stack.result
partition.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
partition_alter.result MDEV-7990: ERROR 1526 when procedure executed for second time ALTER TABLE partition ... pMAX values less than MAXVALUE 2015-09-14 09:56:17 +02:00
partition_binlog.result 10.0-monty merge 2013-07-21 16:39:19 +02:00
partition_binlog_stmt.result
partition_blackhole.result
partition_bug18198.result store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
partition_cache.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
partition_cache_innodb.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_cache_myisam.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_charset.result
partition_column.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_column_prune.result
partition_csv.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
partition_datatype.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
partition_debug_sync.result MDEV-7660 - MySQL WL#6671 "Improve scalability by not using thr_lock.c locks 2016-11-03 16:35:15 +04:00
partition_default.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_disabled.result MDEV-5823 MySQL bug#11760213-52599: ALTER TABLE REMOVE PARTITIONING ON NON-PARTITIONED TABLE CORRUPTS MYISAM 2014-03-21 14:05:44 +01:00
partition_error.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
partition_example.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_exchange.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_explicit_prune.result MDEV-11227 - mysqlimport -l doesn't issue UNLOCK TABLES 2016-12-21 13:18:45 +04:00
partition_grant.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
partition_hash.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
partition_innodb.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
partition_innodb_plugin.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
partition_innodb_semi_consistent.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
partition_innodb_stmt.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
partition_key_cache.result
partition_list.result MDEV-11681: PARTITION BY LIST COLUMNS with default partition: Assertion `part_info->num_list_values' failed in get_part_iter_for_interval_cols_via_map 2017-02-08 10:22:42 +01:00
partition_mgm.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_mgm_err.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_mgm_err2.result
partition_myisam.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_not_blackhole.result Merge tag 'mariadb-10.0.20' into 10.1 2015-06-27 20:35:26 +02:00
partition_not_windows.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_open_files_limit.result
partition_order.result MDEV-5177: ha_partition and innodb index intersection produce fewer rows (MySQL Bug#70703) 2014-03-11 16:45:08 +01:00
partition_pruning.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
partition_range.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_rename_longfilename.result
partition_symlink.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_sync.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
partition_truncate.result
partition_utf8.result cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
partition_windows.result MDEV-5818: MySQL WL#6145: Separate the dependence of DATA DIRECTORY from symbolic links 2014-03-23 17:00:29 +02:00
perror-win.result
perror.result generalize ER_TABLE_NEEDS_UPGRADE to work for views too 2015-06-01 16:01:23 +02:00
plugin.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
plugin_auth.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
plugin_auth_qa.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
plugin_auth_qa_1.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
plugin_auth_qa_2.result mysql-5.5.34 merge 2013-11-19 13:16:25 +01:00
plugin_auth_qa_3.result Bug #17357528 BACKPORT BUG#16513435 TO 5.5 AND 5.6 2014-06-30 19:24:25 +05:30
plugin_innodb.result
plugin_load.result
plugin_load_option.result
plugin_loaderr.result initialize plugins in the specific order by plugin type 2015-02-10 10:21:17 +01:00
plugin_maturity.result MDEV-5022 Strange message or wrong errno on mismatching versions of plugin and server 2013-11-11 09:31:09 +01:00
plugin_not_embedded.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
plugin_vars.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
pool_of_threads.result Merge 10.1 to 10.2 2017-01-05 10:48:03 +02:00
preload.result
processlist.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
profiling.result
progress_976225.result
ps.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ps_1general.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ps_2myisam.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ps_3innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ps_4heap.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ps_5merge.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
ps_10nestset.result
ps_11bugs.result
ps_change_master.result MDEV-7640: CHANGE MASTER TO doesn't work with prepared statements 2015-10-11 17:21:51 -04:00
ps_ddl.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
ps_ddl1.result
ps_grant.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
ps_max_subselect-5113.result MDEV-5113 Wrong result (extra row) and valgrind warnings in Item_maxmin_subselect::any_value on 2nd execution of PS with SELECT subquery 2013-11-12 15:02:25 +01:00
ps_not_windows.result
query_cache.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
query_cache_28249.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
query_cache_debug.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
query_cache_merge.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
query_cache_notembedded.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
query_cache_ps_no_prot.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
query_cache_ps_ps_prot.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
query_cache_with_views.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
quick_select_4161.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
range.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
range_innodb.result MDEV-6735: Range checked for each record used with key (also MDEV-7786, MDEV-7923) 2015-06-09 18:56:51 +03:00
range_mrr_icp.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
range_vs_index_merge.result Added new status variables to make it easier to debug certain problems: 2016-08-21 20:18:39 +03:00
range_vs_index_merge_innodb.result Merge branch '10.2' into bb-10.2-jan 2016-09-19 09:47:08 +02:00
read_many_rows_innodb.result
read_only.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
read_only_innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rename.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
renamedb.result
reopen_temp_table.result MDEV-10216: Assertion `strcmp(share->unique_file_name,filename) || 2016-08-08 17:26:06 -04:00
repair.result generalize ER_TABLE_NEEDS_UPGRADE to work for views too 2015-06-01 16:01:23 +02:00
repair_symlink-5543.result MDEV-8475 stale .TMM file causes MyiSAM and Aria engine to stop serving the table 2015-08-18 11:18:57 +03:00
replace.result restore ER_VIEW_CHECK_FAILED to be different from ER_CONSTRAINT_FAILED 2016-06-30 11:43:02 +02:00
rollback.result
round.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
row-checksum-old.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
row-checksum.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
row.result cleanup: make a couple of tests more robust 2017-02-13 18:12:05 +01:00
rowid_order_innodb.result
rpl_mysqldump_slave.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
schema.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
second_frac-9175.result MDEV-9175 Query parser tansforms MICROSECOND into SECOND_FRAC, which does not work 2016-02-06 11:45:23 +01:00
secure_file_priv_win.result
select.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
select_debug.result fix a couple of dbug tests not to write to /tmp 2016-04-19 11:27:00 +02:00
select_found.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
select_jcl6.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
select_pkeycache.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
select_safe.result
selectivity.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
selectivity_innodb.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
selectivity_no_engine.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
servers.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
set_password_plugin-9835.result Merge branch '10.0' into 10.1 2016-05-04 15:23:26 +02:00
set_statement.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
set_statement_debug.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
set_statement_notembedded.result MDEV-6956:SET STATEMENT default_master_connection = ... has no effect 2015-03-12 09:47:36 +01:00
set_statement_notembedded_binlog.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
set_statement_profiling.result MDEV-5231: Per query variables from Percona Server (rewritten) 2014-11-11 11:48:50 +01:00
shm.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
show.result disable SHOW I_S_table for built-in I_S tables 2016-02-23 10:54:34 +01:00
show_bad_definer-5553.result MDEV-5553 A view or procedure with a non existing definer can block "SHOW TABLE STATUS" with an unclear error message 2014-10-07 11:55:39 +02:00
show_check.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
show_create_user.result [MDEV-7978] Added show create user implementation. 2016-03-08 16:55:17 +02:00
show_explain.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
show_explain_non_select.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
show_explain_ps.result Update the testcase for MDEV-10330 2016-11-21 02:32:48 +03:00
show_grants_with_plugin-7985.result Merge branch '5.5' into 10.0 2016-04-26 23:05:26 +02:00
show_profile.result
show_row_order-9226.result MDEV-9226 SHOW COLUMNS returns wrong column order for tables with large ENUMs 2015-12-08 09:46:51 +01:00
shutdown.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
sighup-6580.result MDEV-6580 Assertion `thd' failed in my_malloc_size_cb_func upon writing status report into error log 2014-09-07 20:19:12 +02:00
signal.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
signal_code.result
signal_demo1.result
signal_demo2.result
signal_demo3.result
signal_sqlmode.result
single_delete_update.result Merge branch '10.0' into 10.1 2016-08-25 12:40:09 +02:00
single_delete_update_innodb.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
skip_grants.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
skip_log_bin.result
skip_name_resolve.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
slowlog_enospace-10508.result MDEV-10508 Mariadb crash on out of disk space during dump import 2016-09-28 17:59:11 +02:00
sp-big.result
sp-bugs.result 5.5 merge 2014-09-16 14:03:17 +02:00
sp-bugs2.result MDEV-6610 Assertion `thd->is_error() || thd->killed' failed in mysql_execute_command on executing an SP with repeated CREATE TABLE .. SELECT 2014-09-06 09:46:41 +02:00
sp-code.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
sp-destruct.result Merge tag 'mariadb-10.0.19' into 10.1 2015-06-01 15:51:25 +02:00
sp-dynamic.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
sp-error.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
sp-fib.result
sp-group.result after-merge fixes 2015-08-04 23:40:25 +02:00
sp-innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
sp-lock.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
sp-no-code.result
sp-prelocking.result MDEV-9084 Calling a stored function from a nested select from temporary table causes unpredictable behavior 2017-01-06 10:46:21 +01:00
sp-security.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
sp-threads.result Merge branch '10.1' into 10.2 2016-06-30 16:38:05 +02:00
sp-ucs2.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
sp-vars.result
sp.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
sp_gis.result
sp_missing_4665.result
sp_notembedded.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
sp_stress_case.result
sp_sync.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
sp_trans.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
sp_trans_log.result MDEV-5115 RBR from MySQL 5.6 to MariaDB 10.0 does not work 2013-12-09 12:37:45 +01:00
sql_mode.result MDEV-11848 Automatic statement repreparation changes query semantics 2017-01-24 17:29:51 +04:00
ssl-big.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
ssl-crl-revoked-crl.result
ssl.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
ssl_8k_key.result MDEV-9293 - Use MariaDB's Connector/C in server 2016-08-25 16:27:57 +02:00
ssl_7937,nossl.result tests for MDEV-7937: Enforce SSL when --ssl client option is used 2015-06-09 22:16:26 +02:00
ssl_7937.result tests for MDEV-7937: Enforce SSL when --ssl client option is used 2015-06-09 22:16:26 +02:00
ssl_and_innodb.result
ssl_ca.result Remove test for using bash characters in tls/ssl file and directory names. 2016-10-06 12:31:23 +02:00
ssl_cert_verify.result Merge branch 'mysql/5.5' into 5.5 2016-02-09 11:27:40 +01:00
ssl_cipher.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
ssl_compress.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
ssl_connect.result
ssl_crl.result
ssl_crl_clients-valid.result
ssl_crl_clients.result
ssl_crl_clients_valid.result
ssl_crl_clrpath.result
ssl_timeout-9836.result Post-merge: Update test results 2016-06-30 23:56:18 -04:00
ssl_timeout.result Merge branch '10.1' into 10.2 2016-09-09 08:33:08 +02:00
stack-crash.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
stat_tables-enospc.result MDEV-6181 EITS could eat all tmpdir space and hang 2014-08-04 21:36:02 +02:00
stat_tables.result MDEV-7370: Server deadlocks on renaming a table for which persistent statistics exists 2015-11-18 21:31:45 +03:00
stat_tables_disabled.result
stat_tables_innodb.result Merge InnoDB 5.7 from mysql-5.7.9. 2016-09-02 13:22:28 +03:00
stat_tables_innodb_debug.result MDEV-7901: re-implement analyze table for low impact 2016-08-03 21:37:19 +02:00
stat_tables_myisam_debug.result MDEV-7901: re-implement analyze table for low impact 2016-08-03 21:37:19 +02:00
stat_tables_par.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
stat_tables_par_innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
stat_tables_partition.result MDEV-4360: ANALYZE shows "Table is already up to date" while updating stats 2014-03-28 00:32:53 +04:00
stat_tables_rbr.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
stat_tables_repl.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
statistics.result MDEV-7635: Additional test fixes 2017-02-10 06:30:42 -05:00
statistics_index_crash-7362.result MDEV-9118 ANALYZE TABLE for Engine independent status fetchs blob/text columns without use 2016-01-22 18:07:11 +01:00
status.result MDEV-11227 - mysqlimport -l doesn't issue UNLOCK TABLES 2016-12-21 13:18:45 +04:00
status2.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
status_bug17954.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
str_to_datetime_457.result 5.5 merge 2013-07-17 21:24:29 +02:00
strict.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
strict_autoinc_1myisam.result
strict_autoinc_2innodb.result
strict_autoinc_3heap.result
subselect.result cleanup: make a couple of tests more robust 2017-02-13 18:12:05 +01:00
subselect2.result Merge branch 'bb-10.2-serg-merge' into 10.2 2017-02-11 09:45:34 +01:00
subselect3.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
subselect3_jcl6.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
subselect4.result Merge branch '10.1' into 10.2 2017-02-10 17:01:45 +01:00
subselect_cache.result MDEV-11640 gcol.gcol_select_myisam fails in buildbot on Power 2017-02-13 18:12:14 +01:00
subselect_debug.result 5.3 merge 2013-11-13 13:38:37 +01:00
subselect_exists2in.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
subselect_exists2in_costmat.result
subselect_extra.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
subselect_extra_no_semijoin.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
subselect_gis.result
subselect_innodb.result MDEV-8658 DATE(zerofill_column) and DATE(COALESCE(zerofill_column)) return different results 2015-09-23 20:42:28 +04:00
subselect_mat.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
subselect_mat_cost.result
subselect_mat_cost_bugs.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
subselect_no_exists_to_in.result cleanup: make a couple of tests more robust 2017-02-13 18:12:05 +01:00
subselect_no_mat.result cleanup: make a couple of tests more robust 2017-02-13 18:12:05 +01:00
subselect_no_opts.result cleanup: make a couple of tests more robust 2017-02-13 18:12:05 +01:00
subselect_no_scache.result cleanup: make a couple of tests more robust 2017-02-13 18:12:05 +01:00
subselect_no_semijoin.result cleanup: make a couple of tests more robust 2017-02-13 18:12:05 +01:00
subselect_notembedded.result
subselect_nulls.result
subselect_partial_match.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
subselect_sj.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
subselect_sj2.result MDEV-11108: Assertion `uniq_tuple_length_arg <= table->file->max_key_length()' failed in SJ_TMP_TABLE::create_sj_weedout_tmp_table 2017-01-24 01:21:43 +05:30
subselect_sj2_jcl6.result MDEV-11640 gcol.gcol_select_myisam fails in buildbot on Power 2017-02-13 18:12:14 +01:00
subselect_sj2_mat.result MDEV-11108: adjusted test results 2017-01-24 21:02:43 +05:30
subselect_sj_aria.result
subselect_sj_jcl6.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
subselect_sj_mat.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
subselect_sj_nonmerged.result
sum_distinct-big.result
sum_distinct.result
symlink.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
synchronization.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
sysdate_is_now.result
system_mysql_db.result store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
system_mysql_db_fix40123.result store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
system_mysql_db_fix50030.result store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
system_mysql_db_fix50117.result store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
system_mysql_db_refs.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
table_elim.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
table_elim_debug.result
table_keyinfo-6838.result MDEV-6838: Using too big key for internal temp tables 2015-02-28 23:58:05 +02:00
table_options-5867.result be less annoying about sysvar-based table attributes 2015-04-10 02:36:54 +02:00
table_options.result
tablelock.result
tablespace.result
temp_table.result MDEV-10792: Assertion `thd->mdl_context.is_lock_owner .. 2016-11-21 17:14:14 -05:00
temp_table_frm.result Merge branch '10.0' into 10.1 2015-03-07 13:21:02 +01:00
temporal_literal.result Ensure that fields declared with NOT NULL doesn't have DEFAULT values if not specified and if not timestamp or auto_increment 2015-08-18 11:18:57 +03:00
temporal_scale_4283.result
timezone.result MDEV-4724 Some temporal functions do not preserve microseconds 2013-09-13 14:43:10 +04:00
timezone2.result MDEV-5372 Make "CAST(time_expr AS DATETIME)" compatible with MySQL-5.6 (and the SQL Standard) 2014-03-07 00:21:25 +04:00
timezone3.result
timezone4.result MDEV-4724 Some temporal functions do not preserve microseconds 2013-09-13 14:43:10 +04:00
timezone_grant.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
tmp_table_count-7586.result MDEV-7586: Merged derived tables/VIEWs increment created_tmp_tables 2015-02-26 23:09:54 +02:00
trans_read_only.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
trigger-compat.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
trigger-trans.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
trigger.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
trigger_no_defaults-11698.result MDEV-11698 Old Bug possibly not fixed; BEFORE INSERT Trigger on NOT NULL 2017-01-17 20:16:09 +01:00
trigger_notembedded.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
trigger_null-8605.result MDEV-11551 Server crashes in Field::is_real_null 2017-01-15 07:41:13 +01:00
trigger_wl3253.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
true.require
truncate-stale-6500.result MDEV-6500: Stale data returned after TRUNCATE PARTITION operation 2015-06-04 18:04:31 +03:00
truncate.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
truncate_badse.result
truncate_coverage.result MDEV-7660 - MySQL WL#6671 "Improve scalability by not using thr_lock.c locks 2016-11-03 16:35:15 +04:00
type_binary.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_bit.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_bit_innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_blob.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_date.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_datetime.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_datetime_hires.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_decimal.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_enum.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_float.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_int.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
type_nchar.result
type_newdecimal-big.result
type_newdecimal.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_num.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_num_innodb.result MDEV-9393 Split Copy_field::get_copy_func() into virtual methods in Field 2016-01-11 17:20:16 +04:00
type_ranges.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_set.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_temporal_innodb.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_temporal_mysql56.result store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
type_time.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_time_6065.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
type_time_hires.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_timestamp.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_timestamp_hires.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_uint.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
type_varchar.result Part of MDEV-10134 Add full support for DEFAULT 2016-06-30 11:43:02 +02:00
type_year.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
udf.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
udf_debug_sync.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
udf_notembedded.result MDEV-8644 Using a UDF in a virtual column causes a crash when stopping the server 2015-12-08 09:46:52 +01:00
udf_query_cache.result
udf_skip_grants.result
union.result Merge branch 'bb-10.2-serg-merge' into 10.2 2017-02-11 09:45:34 +01:00
union_crash-714.result 5.3 merge 2014-02-14 14:09:29 +01:00
uniques_crash-7912.result Fix failing test cases for MDEV-7912 patch 2015-04-29 14:16:03 +03:00
unsafe_binlog_innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
update.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
update_ignore_216.result
update_innodb.result MDEV-8114: server crash on updates with joins still on 10.0.18 2015-06-06 16:13:51 +02:00
upgrade.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
user_limits.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
user_var-binlog.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
user_var.result Part of MDEV-10134 Add full support for DEFAULT 2016-06-30 11:43:02 +02:00
userstat-badlogin-4824.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
userstat.result MDEV-10201 SSL tests fail on fedora23 2016-09-28 22:14:27 +02:00
varbinary.result MDEV-8466 CAST works differently for DECIMAL/INT vs DOUBLE for empty strings 2015-09-17 11:05:07 +04:00
variables-notembedded.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
variables.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
variables_community.result
view.result cleanup: make a couple of tests more robust 2017-02-13 18:12:05 +01:00
view_alias.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
view_debug.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
view_grant.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
wait_timeout.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
wait_timeout_not_windows.result backport include/search_pattern_in_file.inc from 10.1 2016-10-26 18:44:34 +02:00
warnings.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
warnings_debug.result
warnings_engine_disabled.result MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size) 2015-09-04 10:33:56 +02:00
win.result Fixed bugs mdev-12051, mdev-10885. 2017-02-12 15:50:14 -08:00
win_avg.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
win_big.result Make win_big test specify only if Sort_merge_passes have happened 2016-09-24 15:12:34 +02:00
win_bit.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
win_empty_over.result Fixed bug mdev-11745. 2017-02-09 19:34:01 -08:00
win_first_last_value.result Add test results for win_first_last_value 2016-09-24 15:12:34 +02:00
win_i_s.result Add test case for new window functions status var 2016-09-24 15:12:34 +02:00
win_lead_lag.result Implement LEAD and LAG and NTH_VALUE functions 2016-09-24 15:12:34 +02:00
win_min_max.result Frame bounds using FOLLOWING or PRECEDING can have 0 as cardinal value 2016-09-24 15:09:39 +02:00
win_nth_value.result Clean up nth_value 2016-09-24 15:12:34 +02:00
win_ntile.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
win_orderby.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
win_percent_cume.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
win_rank.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
win_std.result Fix win_std nondeterministic results 2016-09-24 15:12:34 +02:00
win_sum.result Merge branch '10.2' into 10.2-mdev9864 2016-05-08 23:04:41 +03:00
windows.result Bug #16581605: REPLACE.EXE UTILITY IS BROKEN IN 5.5 2014-10-21 16:25:35 +05:30
xa.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
xa_binlog.result
xa_sync.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
xml.result More tests for MDEV-10134 Add full support for DEFAULT 2016-06-30 11:43:02 +02:00
xtradb_mrr.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00