mariadb/mysql-test/r
Alexander Barkov 2ed148c8d7 MDEV-25402 Assertion `!str || str != Ptr' failed in String::copy
The assert inside String::copy() prevents copying from from "str"
if its own String::Ptr also points to the same memory.

The idea of the assert is that copy() performs memory reallocation,
and this reallocation can free (and thus invalidate) the memory pointed by Ptr,
which can lead to further copying from a freed memory.

The assert was incomplete: copy() can free the memory pointed by its Ptr
only if String::alloced is true!

If the String is not alloced, it is still safe to copy even from
the location pointed by Ptr.

This scenario demonstrates a safe copy():
  const char *tmp= "123";
  String str1(tmp, 3);
  String str2(tmp, 3);
  // This statement is safe:
  str2.copy(str1->ptr(), str1->length(), str1->charset(), cs_to, &errors);

Inside the copy() the parameter "str" is equal to String::Ptr in this example.
But it's still ok to reallocate the memory for str2, because str2
was a constant before the copy() call. Thus reallocation does not
make the memory pointed by str1->ptr() invalid.

Adjusting the assert condition to allow copying for constant strings.
2021-10-27 10:50:15 +04:00
..
1st.result
aborted_clients.result
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
almost_full.result
alter_table-big.result
alter_table.result MDEV-25403 ALTER TABLE wrongly checks for field's default value if AFTER is used 2021-04-15 09:42:37 +02:00
alter_table_autoinc-5574.result
alter_table_errors.result MDEV-18083 ASAN heap-use-after-free in Field::set_warning_truncated_wrong_value upon inserting into temporary table 2019-02-05 01:34:17 +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 MDEV-13175 Adding a new enum value at the end of a list triggers a table rebuild 2017-07-20 20:13:28 +02:00
alter_table_trans.result
alter_user.result Revert "[MDEV-7978] add show create user" 2020-09-24 13:58:29 +10:00
analyze.result
analyze_debug.result MDEV-10555: Server crashes in mysql_admin_table upon killing ANALYZE 2017-03-13 15:31:12 +01:00
analyze_format_json.result MDEV-13826: Floating point exception in Filesort_tracker::print_json_members(Json_writer*) 2017-07-12 19:46:44 +05:30
analyze_stmt.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
analyze_stmt_orderby.result Merge branch '10.1' into 10.2 2018-06-21 23:47:39 +02:00
analyze_stmt_privileges.result
analyze_stmt_privileges2.result
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
aria_icp_debug.result Merge branch '10.1' into 10.2 2020-10-29 15:16:53 +01:00
assign_key_cache.result MDEV-15216 Assertion `! is_set() || m_can_overwrite_status' failed in Diagnostics_area::set_error_status upon operation inside XA 2018-05-08 10:48:13 +02:00
assign_key_cache_debug.result Merge branch '10.1' into 10.2 2018-05-10 13:01:42 +02:00
auth_named_pipe.result
auth_rpl.result
auto_increment.result Merge branch '10.1' into 10.2 2018-06-21 23:47:39 +02:00
auto_increment_ranges_innodb.result Merge 10.1 into 10.2 2018-11-07 08:17:47 +02: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
bench_count_distinct.result MDEV-15433: Optimizer does not use group by optimization with distinct 2018-08-05 13:25:40 +03:00
big_test.require
bigint.result Merge branch '10.1' into 10.2 2018-11-15 19:21:40 +01:00
binary.result
binary_to_hex.result Merge branch '10.1' into 10.2 2017-08-17 11:38:34 +02:00
blackhole.result MDEV-24017: Blackhole : Specified key was too long; max key length is 1000 bytes 2020-10-24 22:43:21 +11:00
blackhole_plugin.result
bool.result
bootstrap.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
bootstrap_innodb.result test case for BUG#31650096 2020-10-27 09:24:15 +01:00
bug39022.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
bug46760.result
bug47671.result
bug58669.result
bug12427262.result
bug13633383.result
bulk_replace.result
cache_innodb.result
cache_temporal_4265.result MDEV-21360 debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
case.result MDEV-11839 move value caching from get_datetime_value to fix_fields time 2018-03-14 12:45:28 +01:00
case_insensitive_file_system.require
case_insensitive_fs.require
case_sensitive_file_system.require
cast.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
change_user.result
change_user_notembedded.result
charset_client_win.result MDEV-19750 mysql command wrong encoding 2019-06-17 18:04:47 +01:00
check.result MDEV-16905 ASAN heap-use-after-free in __interceptor_strnlen / ... / TABLE::verify_constraints upon INSERT into temporary table with CHECK constraint 2019-02-05 01:34:17 +01:00
check_constraint.result fix the typo OPTION_NO_CHECK_CONSTRAINT_CHECKS 2019-03-12 09:51:42 +01:00
check_constraint_innodb.result MDEV-18239 ASAN use-after-poison in process_str_arg / ... / mark_unsupported_func or unexpected ER_BAD_FIELD_ERROR upon ALTER TABLE 2019-02-05 01:34:17 +01:00
check_constraint_show.result MDEV-11115 CHECK constraints are not shown in I_S.TABLE_CONSTRAINTS 2017-03-29 12:07:33 -07:00
check_var_limit.require
client_xml.result MDEV-13132 Information Schema does not show whether column default is expression or literal 2017-07-05 17:15:59 +02:00
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
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 MDEV-22558 wrong error for invalid utf8 table comment 2020-05-27 15:56:40 +02:00
comments.result
commit.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
commit_1innodb.result MDEV-17515: GTID Replication in optimistic mode deadlock 2021-05-17 16:38:58 +05:30
compare.result Backporting 273d8eb12c Proper fix for disabling warnings in read_statistics_for_table() 2019-09-23 14:11:48 +05:30
compound.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
compress.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
concurrent_innodb_safelog.result
concurrent_innodb_unsafelog.result
connect.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
connect2.result
connect_debug.result Merge branch '10.1' into 10.2 2020-01-20 16:15:05 +01:00
consistent_snapshot.result
constraints.result MDEV-16932: ASAN heap-use-after-free in my_charlen_utf8 / my_well_formed_char_length_utf8 on 2nd execution of SP with ALTER trying to add bad CHECK 2019-08-28 12:06:52 +02:00
contributors.result Update sponsors 2021-03-12 07:02:29 +11:00
count_distinct.result MDEV-13458: Wrong result for aggregate function with distinct clause when the value for tmp_table_size is small 2017-08-09 18:09:04 +05:30
count_distinct2.result
count_distinct3.result
crash_commit_before.result
create-big.result
create-uca.result
create.result MDEV-18428 Memory: If transactional=0 is specified in CREATE TABLE, it is not possible to ALTER TABLE 2021-01-11 21:54:47 +01:00
create_delayed.result
create_drop_binlog.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
create_drop_db.result
create_drop_event.result MDEV-19265 Server should throw warning if event is created and event_scheduler = OFF 2019-04-28 12:49:59 +02:00
create_drop_function.result Merge 10.1 into 10.2 2020-07-14 15:10:59 +03:00
create_drop_index.result
create_drop_procedure.result
create_drop_role.result Merge remote-tracking branch 'origin/10.1' into 10.2 2019-02-28 13:08:11 +02:00
create_drop_server.result MDEV-19679 - CREATE SERVER needs tweaks for compatibility with CONNECT engine 2019-09-20 01:54:38 -07:00
create_drop_trigger.result MDEV-6112 multiple triggers per table 2016-10-05 01:11:07 +03:00
create_drop_udf.result
create_drop_user.result
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 MDEV-23391 Crash/assertion CREATE OR REPLACE TABLE AS SELECT under LOCK TABLE 2021-10-26 14:33:07 +02:00
create_or_replace2.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
create_or_replace_permission.result
create_replace_tmp.result MDEV-16192 Table 't' is specified twice, both as a target for 'CREATE' and... 2018-07-18 20:58:59 +05:30
create_select_tmp.result
create_user.result Revert "[MDEV-7978] add show create user" 2020-09-24 13:58:29 +10: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 update create_w_max_indexes_128.result 2019-11-15 11:14:25 +01:00
cte_grant.result MDEV-14428 main.cte_nonrecursive failed in --embedded 2017-11-21 20:03:57 +01:00
cte_nonrecursive.result MDEV-26025 Server crashes while executing query with CTE in PS/SP 2021-07-20 10:37:37 -07:00
cte_nonrecursive_not_embedded.result MDEV-20751 Permission Issue With Nested CTEs 2020-12-17 13:44:06 -08:00
cte_recursive.result MDEV-26202 Unexpected failure with query using indirectly a recursive CTE twice 2021-07-22 17:08:08 -07:00
cte_recursive_not_embedded.result Corrected and added back the test case for MDEV-15151. 2018-07-20 19:32:28 -07:00
ctype_ascii.result
ctype_big5.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
ctype_binary.result MDEV-22111 ERROR 1064 & 1033 and SIGSEGV on CREATE TABLE w/ various charsets on 10.4/5 optimized builds | Assertion `(uint) (table_check_constraints - share->check_constraints) == (uint) (share->table_check_constraints - share->field_check_constraints)' failed 2020-05-22 15:00:29 +04:00
ctype_collate.result Merge branch '10.2' of github.com:MariaDB/server into bb-10.2-mariarocks 2017-03-11 20:12:15 +00:00
ctype_cp850.result
ctype_cp932.result
ctype_cp932_binlog_row.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
ctype_cp932_binlog_stm.result MDEV-21839: Handle crazy offset to SHOW BINLOG EVENTS 2020-09-16 14:03:32 +05:30
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 Merge remote-tracking branch 'origin/10.1' into 10.2 2019-09-24 19:19:25 +04:00
ctype_create.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
ctype_errors.result
ctype_eucjpms.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
ctype_euckr.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
ctype_filename.result MDEV-25462: Assertion `m_status == DA_ERROR || m_status == DA_OK || 2021-05-20 09:45:27 +05:30
ctype_filesystem.result
ctype_gb2312.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
ctype_gbk.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
ctype_gbk_binlog.result
ctype_gbk_export_import.result
ctype_hebrew.result
ctype_latin1.result Merge remote-tracking branch 'origin/10.1' into 10.2 2019-09-24 19:19:25 +04:00
ctype_latin1_de.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03: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 MDEV-14350 Index use with collation utf8mb4_unicode_nopad_ci on LIKE pattern with wrong results 2017-12-08 13:19:19 +04:00
ctype_many.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04: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
ctype_partitions.result
ctype_recoding.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
ctype_sjis.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02: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 Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
ctype_uca.result Backporting 273d8eb12c Proper fix for disabling warnings in read_statistics_for_table() 2019-09-23 14:11:48 +05:30
ctype_uca_innodb.result Backporting 273d8eb12c Proper fix for disabling warnings in read_statistics_for_table() 2019-09-23 14:11:48 +05:30
ctype_uca_partitions.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
ctype_ucs.result Merge remote-tracking branch 'origin/10.1' into 10.2 2019-09-24 19:19:25 +04: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-14350 Index use with collation utf8mb4_unicode_nopad_ci on LIKE pattern with wrong results 2017-12-08 13:19:19 +04:00
ctype_ujis.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
ctype_ujis_ucs2.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
ctype_upgrade.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
ctype_utf8.result MDEV-23408 Wrong result upon query from I_S and further Assertion `!alias_arg || strlen(alias_arg->str) == alias_arg->length' failed with certain connection charset 2021-10-14 10:16:23 +04:00
ctype_utf8_def_upgrade.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
ctype_utf8_uca.result MDEV-14350 Index use with collation utf8mb4_unicode_nopad_ci on LIKE pattern with wrong results 2017-12-08 13:19:19 +04:00
ctype_utf8mb4.result MDEV-18428 Memory: If transactional=0 is specified in CREATE TABLE, it is not possible to ALTER TABLE 2021-01-11 21:54:47 +01:00
ctype_utf8mb4_heap.result MDEV-24033: SIGSEGV in __memcmp_avx2_movbe from queue_insert | SIGSEGV in __memcmp_avx2_movbe from native_compare 2020-12-10 08:45:20 +01:00
ctype_utf8mb4_innodb.result MDEV-18428 Memory: If transactional=0 is specified in CREATE TABLE, it is not possible to ALTER TABLE 2021-01-11 21:54:47 +01:00
ctype_utf8mb4_myisam.result MDEV-18428 Memory: If transactional=0 is specified in CREATE TABLE, it is not possible to ALTER TABLE 2021-01-11 21:54:47 +01:00
ctype_utf8mb4_uca.result MDEV-14350 Index use with collation utf8mb4_unicode_nopad_ci on LIKE pattern with wrong results 2017-12-08 13:19:19 +04:00
ctype_utf16.result MDEV-24033: SIGSEGV in __memcmp_avx2_movbe from queue_insert | SIGSEGV in __memcmp_avx2_movbe from native_compare 2020-12-10 08:45:20 +01:00
ctype_utf16_def.result MDEV-23269 SIGSEGV in ft_boolean_check_syntax_string on setting ft_boolean_syntax 2021-10-11 17:43:23 +04:00
ctype_utf16_uca.result MDEV-22111 ERROR 1064 & 1033 and SIGSEGV on CREATE TABLE w/ various charsets on 10.4/5 optimized builds | Assertion `(uint) (table_check_constraints - share->check_constraints) == (uint) (share->table_check_constraints - share->field_check_constraints)' failed 2020-05-22 15:00:29 +04:00
ctype_utf16le.result A clean-up patch for MDEV-23408: fixing test failure on Windows 2021-10-15 21:56:17 +04:00
ctype_utf32.result MDEV-18428 Memory: If transactional=0 is specified in CREATE TABLE, it is not possible to ALTER TABLE 2021-01-11 21:54:47 +01:00
ctype_utf32_def.result MDEV-23269 SIGSEGV in ft_boolean_check_syntax_string on setting ft_boolean_syntax 2021-10-11 17:43:23 +04:00
ctype_utf32_uca.result MDEV-25402 Assertion `!str || str != Ptr' failed in String::copy 2021-10-27 10:50:15 +04:00
date_formats.result bugfix: TIME_FORMAT() allowed some non-time format specifiers 2017-09-18 10:12:23 +02:00
datetime_456.result
ddl_i18n_koi8r.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
ddl_i18n_utf8.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
deadlock_innodb.result
debug_sync.result MDEV-11227 - mysqlimport -l doesn't issue UNLOCK TABLES 2016-12-21 13:18:45 +04:00
default.result restore default.test, default.result after MDEV-23597 c47e4aab62 commit 2021-10-20 14:52:15 +03:00
default_debug.result Race condition in DEFAULT() with expressions 2017-02-13 18:12:04 +01:00
default_session.result MDEV-21249 MariaDB 10.3.10 When referring to bigint to generate timestamp data in the virtual generated column, the value of the generated column does not change when the time zone changes 2020-01-21 21:15:10 +01:00
default_storage_engine.result
delayed.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
delayed_blob.result MDEV-25925 Warning: Memory not freed: 32 on INSERT DELAYED 2021-10-11 18:03:42 +04:00
delete.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
delete_returning.result MDEV-13776 mysqld got signal 11 on delete returning 2017-10-23 15:35:10 -07:00
delete_returning_grant.result
delimiter_command_case_sensitivity.result MDEV-10728 -- mysqlbinlog can't be input to mysql client 2017-11-06 12:56:56 +00:00
deprecated_features.result
derived.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
derived_cond_pushdown.result MDEV-25969: Condition pushdown into derived table doesn't work if select list uses SP 2021-06-30 13:52:23 +03:00
derived_opt.result MDEV-25182 Complex query in Store procedure corrupts results 2021-04-12 15:59:23 +02:00
derived_view.result MDEV-25679 Wrong result selecting from simple view with LIMIT and ORDER BY 2021-06-21 16:21:17 -07:00
dirty_close.result
distinct.result MDEV-12575: Server crash in AGGR_OP::put_record or in JOIN_CACHE::free or Invalid write in JOIN::make_aggr_tables_info 2018-11-10 13:13:26 +05:30
drop-no_root.result
drop.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
drop_bad_db_type.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
dyncol.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
empty_server_name-8224.result
empty_table.result Don't increment 'Empty_queries' for queries with errors. 2016-09-15 22:02:32 +03:00
empty_user_table.result
endspace.result
enforce_storage_engine.result
enforce_storage_engine_opt.result
engine_error_in_alter-8453.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
error_simulation.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
errors.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
events_1.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
events_2.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
events_bugs.result Merge branch '10.1' into 10.2 2020-01-03 12:40:38 +01:00
events_embedded.result
events_grant.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
events_logs_tests.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
events_microsec.result
events_restart.result MDEV-21758 : Events switched randomly to SLAVESIDE_DISABLED 2020-03-09 12:19:11 +02:00
events_scheduling.result
events_slowlog.result search_pattern_in_file.inc changes 2017-03-31 19:28:58 +02:00
events_stress.result
events_time_zone.result
events_trans.result MDEV-19265 Server should throw warning if event is created and event_scheduler = OFF 2019-04-28 12:49:59 +02:00
events_trans_notembedded.result
execution_constants.result
explain.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
explain_json.result MDEV-15433: Optimizer does not use group by optimization with distinct 2018-08-05 13:25:40 +03: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
explain_slowquerylog.result MDEV-16153 Server crashes in Apc_target::disable, ASAN heap-use-after-free in Explain_query::~Explain_query upon/after EXECUTE IMMEDIATE 2018-05-19 22:12:39 +02:00
ext_key_noPK_6794.result
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
fast_prefix_index_fetch_innodb.result Merge 10.1 into 10.2 2020-09-01 16:20:23 +03:00
features.result MDEV-6112 multiple triggers per table 2016-10-05 01:11:07 +03:00
file_contents.result
filesort_bad_i_s-7585.result
filesort_debug.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
fix_priv_tables.result
flush-innodb-notembedded.result
flush-innodb.result
flush.result Merge 10.1 into 10.2 2018-11-06 08:41:48 +02:00
flush2.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
flush_block_commit.result
flush_block_commit_notembedded.result
flush_read_lock.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
flush_read_lock_kill.result
flush_table.result
foreign_key.result MDEV-18463 Don't allow multiple table CONSTRAINTs with the same name. 2019-12-09 01:17:16 +04:00
frm_bad_row_type-7333.result
fulltext.result MDEV-20411 Procedure containing CTE incorrectly stored in mysql.proc 2021-06-25 18:06:08 -07:00
fulltext2.result
fulltext3.result
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
fulltext_left_join.result
fulltext_multi.result
fulltext_order_by.result
fulltext_update.result
fulltext_var.result
func_analyse.result
func_compress.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
func_concat.result Test for MDEV-13119 and MDEV-13120 2018-10-15 10:57:36 +04:00
func_crypt.result Merge branch '10.1' into 10.2 2017-07-05 19:08:55 +02:00
func_date_add.result Merge remote-tracking branch 'origin/10.1' into 10.2 2018-03-16 14:12:00 +02:00
func_default.result MDEV-16217: Assertion `!table || (!table->read_set || bitmap_is_set(table->read_set, field_index))' failed in Field_num::get_date 2018-11-14 10:27:41 +01: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
func_gconcat.result MDEV-4677 GROUP_CONCAT not showing any output with group_concat_max_len >= 4Gb 2020-12-10 08:45:20 +01:00
func_group.result MDEV-25112 MIN/MAX aggregation over an indexed column may return wrong result 2021-03-18 09:54:49 -07:00
func_group_innodb.result Merge branch '10.1' into 10.2 2018-12-30 18:30:29 +01:00
func_hybrid_type.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
func_if.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
func_in.result Merge branch '10.1' into 10.2 2017-10-24 14:53:18 +02:00
func_isnull.result Merge 10.1 into 10.2 2018-08-21 15:20:34 +03:00
func_json.result MDEV-24585 Assertion `je->s.cs == nice_js->charset()' failed in json_nice. 2021-10-19 11:00:56 +04:00
func_like.result Item_func_like::walk() was ignoring escape_item 2020-12-19 11:44:42 +01:00
func_math.result cleanup: move precedence tests into precedence_bugs.test 2020-10-23 15:53:41 +02:00
func_misc.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
func_op.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
func_regexp.result
func_regexp_pcre.result MENT-464 ASAN MTR quick test - some failures to be investigated. 2020-01-24 00:29:06 +04:00
func_regexp_pcre_debug.result MDEV-21360 debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
func_rollback.result
func_sapdb.result
func_set.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
func_str.result MDEV-24742 Server crashes in Charset::numchars / String::numchars 2021-10-11 17:01:47 +04: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 precedence bugfixing 2020-10-23 15:53:41 +02:00
func_time.result MDEV-21388 Wrong result of DAYNAME()=xxx in combination with condition_pushdown_for_derived=on 2019-12-24 15:05:52 +04: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 Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
function_defaults.result MDEV-20403 Assertion 0' or Assertion btr_validate_index(index, 0)' failed in row_upd_sec_index_entry or error code 126: Index is corrupted upon UPDATE with TIMESTAMP..ON UPDATE 2019-09-04 15:37:23 +02: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
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 MDEV-13175 Adding a new enum value at the end of a list triggers a table rebuild 2017-07-20 20:13:28 +02:00
gis-debug.result
gis-json.result MDEV-25461 Assertion `je->state == JST_KEY' failed in Geometry::create_from_json. 2021-06-28 11:53:33 +04:00
gis-loaddata.result Backporting MDEV-15497 Wrong empty value in a GEOMETRY column on LOAD DATA 2019-02-23 17:43:59 +04:00
gis-precise.result MDEV-13467: Feature request: Support for ST_Distance_Sphere() 2021-03-27 10:42:39 +01:00
gis-rt-precise.result MDEV-12078 Using spatial index changes type from point to geometry 2017-07-11 23:27:19 +04:00
gis-rtree.result MDEV-14057 InnoDB GIS tests fail. 2020-03-18 13:55:21 +04:00
gis.result Fixed memory leak with DEFAULT(f) on Geometry field 2020-04-18 11:51:42 +03:00
gis_notembedded.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
grant.result MDEV-23082: ER_TABLEACCESS_DENIED_ERROR error message is truncated, 2020-08-04 10:55:21 +05:30
grant2.result MDEV-16238 root/localhost authn prioritizes authentication_string over Password 2018-06-21 10:15:27 +02:00
grant3.result
grant4.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
grant5.result MDEV-26080: SHOW GRANTS does not quote role names properly for DEFAULT ROLE 2021-07-09 08:25:54 +02:00
grant_4332.result
grant_cache_no_prot.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
grant_cache_ps_prot.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
grant_explain_non_select.result
grant_lowercase.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
grant_lowercase_fs.result
grant_not_windows.result Merge branch '10.0' into 10.1 2018-05-19 22:05:55 +02:00
greedy_optimizer.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
group_by.result MDEV-23826: ORDER BY in view definition leads to wrong result with GROUP BY on query using view 2021-01-12 18:47:39 +05:30
group_by_innodb.result Merge branch '10.0' into 10.1 2016-12-11 09:53:42 +01:00
group_by_null.result
group_min_max.result Merge 10.1 into 10.2 2019-09-23 08:26:08 +03: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
handlersocket.result MDEV-11663 Create services for functionality used by plugins 2017-04-27 19:12:38 +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 Merge branch '10.1' into 10.2 2018-06-21 23:47:39 +02: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 Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
huge_frm-6224.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
implicit_char_to_num_conversion.result
implicit_commit.result Merge branch '10.0' into 10.1 2018-05-08 17:08:23 +02:00
in_datetime_241.result
index_intersect.result
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 Fix wrong merge of commit d218d1aa49 2020-06-12 10:55:53 +03:00
index_merge_myisam.result Merge 10.1 into 10.2 2020-04-14 16:13:35 +03:00
information_schema-big.result MDEV-25129 fixup: Adjust test result 2021-07-02 11:08:48 +03:00
information_schema.result MDEV-23408 Wrong result upon query from I_S and further Assertion `!alias_arg || strlen(alias_arg->str) == alias_arg->length' failed with certain connection charset 2021-10-14 10:16:23 +04:00
information_schema2.result
information_schema_all_engines.result MDEV-25129 Add KEYWORDS view to the INFORMATION_SCHEMA 2021-06-29 16:15:24 +03:00
information_schema_chmod.result
information_schema_db.result MDEV-20549 SQL SECURITY DEFINER does not work for INFORMATION_SCHEMA tables 2019-10-28 08:17:56 +01:00
information_schema_inno.result
information_schema_linux.result
information_schema_parameters.result Merge branch '10.1' into 10.2 2019-07-26 07:03:39 +02:00
information_schema_part.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
information_schema_prepare.result MDEV-15907 ASAN heap-use-after-free in strnmov / .. / fill_effective_table_privileges on concurrent GRANT and CREATE VIEW 2019-04-24 11:15:38 +02:00
information_schema_routines.result MDEV-13132 Information Schema does not show whether column default is expression or literal 2017-07-05 17:15:59 +02:00
information_schema_stats.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
init_connect.result
init_connection_query_cache.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
init_file.result
init_file_longline_3816.result
init_file_set_password-7656.result
innodb_bug878769.result
innodb_ext_key,off.rdiff MDEV-23600 Division by 0 in row_search_with_covering_prefix 2020-09-01 15:52:36 +03:00
innodb_ext_key.result Fixed the innodb_ext_key test by adding replace_column 2021-02-25 12:42:01 +05:30
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 Merge 10.1 into 10.2 2019-09-18 16:24:48 +03:00
innodb_icp_debug.result Merge branch '10.1' into 10.2 2020-10-29 15:16:53 +01:00
innodb_ignore_builtin.result
innodb_load_xa.result
innodb_mrr_cpk.result MDEV-17382 Hash join algorithm should not be used to join materialized 2018-10-08 00:31:37 -07:00
innodb_mysql_lock.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
innodb_mysql_lock2.result
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-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
insert_debug.result Merge branch '10.1' into 10.2 2020-01-20 16:15:05 +01:00
insert_innodb.result
insert_notembedded.result MDEV-11227 - mysqlimport -l doesn't issue UNLOCK TABLES 2016-12-21 13:18:45 +04:00
insert_select.result Merge branch '10.1' into 10.2 2018-05-20 20:25:35 +02:00
insert_update.result Bug #26881946: INCORRECT BEHAVIOR WITH "VALUES" 2017-11-16 09:31:12 +05:30
insert_update_autoinc-7150.result
ipv4_and_ipv6.result
ipv4_as_ipv6.result
ipv6.result
join.result Merge 10.1 into 10.2 2019-08-20 09:15:28 +03:00
join_cache.result MDEV-24767 Wrong result when forced BNLH is used for join supported 2021-03-22 22:04:54 -07:00
join_crash.result
join_nested.result Merge branch '10.1' into 10.2 2019-06-13 16:42:21 +02:00
join_nested_jcl6.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
join_optimizer.result
join_outer.result MDEV-25362 Incorrect name resolution for subqueries in ON expressions 2021-04-17 11:02:29 -07:00
join_outer_innodb.result Merge branch '10.1' into 10.2 2019-07-26 07:03:39 +02:00
join_outer_jcl6.result MDEV-25362 Incorrect name resolution for subqueries in ON expressions 2021-04-17 11:02:29 -07: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
key_diff.result
key_primary.result
keyread.result MDEV-12293 Assertion `table->no_keyread || !table->covering_keys.is_set(tab->index) || table->file->keyread == tab->index' failed 2017-04-30 14:58:11 +02:00
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
kill.result don't allow KILL QUERY ID USER xxx 2021-01-24 11:35:55 +01:00
kill_processlist-6619.result
kill_query-6728.result
last_value.result
limit.result Merge branch '10.1' into 10.2 2018-06-21 23:47:39 +02:00
limit_rows_examined.result Merge 10.1 into 10.2 2020-10-21 14:02:04 +03:00
loaddata.result Merge 10.1 into 10.2 2019-03-04 16:46:58 +02: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 Backporting MDEV-14628 Wrong autoinc value assigned by LOAD XML in the NO_AUTO_VALUE_ON_ZERO mode 2019-02-23 17:43:59 +04:00
locale.result MDEV-21586 Server does not start if lc_messages setting was not english. 2020-01-30 18:43:50 +01:00
lock.result Fixed deadlock with LOCK TABLES and ALTER TABLE 2020-05-23 14:58:33 +03:00
lock_multi.result Merge 10.1 into 10.2 2018-11-06 08:41:48 +02:00
lock_multi_bug38499.result
lock_multi_bug38691.result
lock_sync.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
lock_tables_lost_commit.result MDEV-11227 - mysqlimport -l doesn't issue UNLOCK TABLES 2016-12-21 13:18:45 +04:00
lock_view.result MDEV-24331 mysqldump fails with "Got error: 1356" if the database contains a view with a subquery 2020-12-11 19:35:38 +01:00
locked_temporary-5955.result
log_errchk.result
log_slow.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
log_slow_debug.result MDEV-21360 debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
log_state.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
log_state_bug33693.result
log_tables-big.result Merge branch '10.1' into 10.2 2017-09-19 12:43:02 +03:00
log_tables.result Merge 10.1 into 10.2 2020-10-21 14:02:04 +03:00
log_tables_debug.result
log_tables_upgrade.result MDEV-11942 BLACKHOLE is no longer active in 10.1 by default, mysql_upgrade not handling the situation 2017-03-10 18:21:25 +01:00
long_tmpdir.result
lowercase0.require
lowercase1.require
lowercase2.require
lowercase_fs_off.result Merge 10.1 into 10.2 2018-11-06 08:41:48 +02:00
lowercase_fs_on.result Fix result files 2017-04-01 14:15:18 +03:00
lowercase_mixed_tmpdir.result
lowercase_mixed_tmpdir_innodb.result
lowercase_table.result MDEV-17148 DROP DATABASE throw "Directory not empty" after changed lower_case_table_names. 2019-02-01 17:10:27 +04:00
lowercase_table2.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
lowercase_table4.result
lowercase_table5.result
lowercase_table_grant.result
lowercase_table_qcache.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03: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-16615 ASAN SEGV in handler::print_error or server crash after error upon CREATE TABLE 2018-06-28 16:17:21 +02:00
mdev316.result
mdev375.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
mdev6830.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
mdev13607.result Merge branch '5.5' into 10.1 2019-06-12 22:54:46 +02:00
mdev19198.result MDEV-19198 - DBUG assert in CREATE IF NOT EXIST under LOCK TABLES WRITE 2021-04-28 08:53:37 +02:00
mdev_14586.result MDEV-14586 Assertion `0' failed in retrieve_auto_increment ... 2018-01-23 17:29:58 +05:30
mdev_19276.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
mdev_22370.result MDEV-22370 safe_mutex: Trying to lock uninitialized mutex at /data/src/10.4-bug/sql/rpl_parallel.cc, line 470 upon shutdown during FTWRL 2021-05-14 11:49:46 +01:00
mdl.result fix main.mdl failure in --embedded 2017-07-05 17:15:57 +02:00
mdl_sync.result Merge 10.1 into 10.2 2017-06-19 16:46:34 +03:00
merge-big.result MDEV-21360 debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
merge.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
merge_debug.result MDEV-21360 debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
merge_innodb.result
merge_mmap.result
metadata.result
mix2_myisam.result MDEV-18428 Memory: If transactional=0 is specified in CREATE TABLE, it is not possible to ALTER TABLE 2021-01-11 21:54:47 +01:00
mix2_myisam_ucs2.result
mrr_derived_crash_4610.result
mrr_icp_extra.result MDEV-12756 rpl.rpl_killed_ddl fails in buildbot with 'Can't find record' 2017-05-17 00:00:27 +03:00
multi_statement.result
multi_update.result MDEV-24823 Crash with invalid multi-table update of view in 2nd execution of SP 2021-04-22 13:56:50 -07:00
multi_update_big.result MDEV-23955 main.multi_update_big times out 2020-10-14 19:18:39 +03:00
multi_update_debug.result Fixed multi_update_debug.test 2020-04-18 12:33:12 +03:00
multi_update_innodb.result Merge branch '10.1' into 10.2 2019-06-13 16:42:21 +02:00
multi_update_tiny_hash.result
myisam-big.result
myisam-blob.result BUG#27788685: NO WARNING WHEN TRUNCATING A STRING WITH DATA 2018-07-23 10:16:58 +05:30
myisam-optimize.result
myisam-system.result Post MDEV-11902 Fix test failures in maria and myisam storage engines 2017-03-03 20:12:48 +02:00
myisam.result MDEV-18428 Memory: If transactional=0 is specified in CREATE TABLE, it is not possible to ALTER TABLE 2021-01-11 21:54:47 +01:00
myisam_crash_before_flush_keys.result
myisam_debug.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01: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-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
myisam_icp_debug.result Merge branch '10.1' into 10.2 2020-10-29 15:16:53 +01:00
myisam_icp_notembedded.result
myisam_mrr.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
myisam_optimize.result Merge branch 'github/10.1' into 10.2 2018-02-06 14:50:50 +01:00
myisam_recover.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
myisampack.result
mysql-bug41486.result
mysql-bug45236.result
mysql.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02: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_binary_zero_insert.result MDEV-25444: mysql --binary-mode is not able to replay some mysqlbinlog outputs 2021-10-06 07:50:37 -06:00
mysql_client_test.result MDEV-26145: Incorrect metadata is sent on running query with union in PS mode 2021-07-19 19:25:11 +07:00
mysql_client_test_comp.result
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 MDEV-16220 Do not pass UTF8 to mysql in command line parameters, on Windows 2018-08-14 22:42:46 +02:00
mysql_protocols.result
mysql_tzinfo_to_sql_symlink.result Merge 10.1 into 10.2 2020-08-20 06:00:36 +03:00
mysql_upgrade-6984.result Merge branch '10.1' into 10.2 2017-03-30 12:48:42 +02:00
mysql_upgrade.result MDEV-26080: SHOW GRANTS does not quote role names properly for DEFAULT ROLE 2021-07-09 08:25:54 +02:00
mysql_upgrade_no_innodb.result MDEV-11942 BLACKHOLE is no longer active in 10.1 by default, mysql_upgrade not handling the situation 2017-03-10 18:21:25 +01:00
mysql_upgrade_noengine.result MDEV-11942 BLACKHOLE is no longer active in 10.1 by default, mysql_upgrade not handling the situation 2017-03-10 18:21:25 +01:00
mysql_upgrade_ssl.result MDEV-11942 BLACKHOLE is no longer active in 10.1 by default, mysql_upgrade not handling the situation 2017-03-10 18:21:25 +01:00
mysql_upgrade_view.result MDEV-11942 BLACKHOLE is no longer active in 10.1 by default, mysql_upgrade not handling the situation 2017-03-10 18:21:25 +01:00
mysqladmin.result
mysqlbinlog-innodb.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
mysqlbinlog.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
mysqlbinlog_raw_mode.result
mysqlbinlog_row_big.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
mysqlbinlog_row_compressed.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
mysqlbinlog_row_minimal.result MDEV-16372 ER_BASE64_DECODE_ERROR upon replaying binary log via mysqlbinlog --verbose 2020-08-31 18:45:14 +03:00
mysqlbinlog_stmt_compressed.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
mysqlcheck.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
mysqld--defaults-file.result Remove unneded extra context line from test file to make it version independent 2020-02-28 19:54:08 +02:00
mysqld--help,win.rdiff Merge 10.1 into 10.2 2020-08-10 17:57:14 +03:00
mysqld--help.result MDEV-25728: mysqld --help --verbose creates a log-bin-index file 2021-05-20 07:55:55 +10:00
mysqld_help_crash-9183.result
mysqld_option_err.result
mysqldump-compat.result MDEV-19182 mysqldump not always handling SHOW CREATE TRIGGER failures correctly 2019-04-24 16:06:54 +02:00
mysqldump-max.result
mysqldump-nl.result Merge branch 'github/10.1' into 10.2 2018-02-06 14:50:50 +01:00
mysqldump-no-binlog.result
mysqldump-system,win.rdiff MDEV-23630: mysqldump logically dump system table information 2020-11-01 08:04:36 +11:00
mysqldump-system.result MDEV-26080: SHOW GRANTS does not quote role names properly for DEFAULT ROLE 2021-07-09 08:25:54 +02:00
mysqldump.result MDEV-20939: Race condition between mysqldump import and InnoDB persistent 2021-01-27 22:13:07 +05:30
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 branch '5.5' into 10.0 2018-06-10 17:16:27 +03:00
mysqltest.result Merge branch '10.1' into 10.2 2017-07-05 19:08:55 +02:00
mysqltest_256.result
mysqltest_cont_on_error.result
mysqltest_ps.result
mysqltest_tracking_info.result MDEV-22058: Assertion `!is_set() || (m_status == DA_OK_BULK && is_bulk_op())' failed in Diagnostics_area::set_ok_status 2020-07-12 20:03:32 +05:30
named_pipe.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
negation_elimination.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
nested_profiling.result Merge 10.1 into 10.2 2020-07-01 12:03:55 +03:00
no-threads.result
no_binlog.result
no_password_column-mdev-11170.result MDEV-11170: MariaDB 10.2 cannot start on MySQL 5.7 datadir 2017-02-14 07:46:58 +02:00
non_blocking_api.result
not_embedded_server.result
not_partition.result
not_staging.require
not_valgrind.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 Merge 10.1 into 10.2 2019-04-25 09:04:09 +03:00
old-mode.result MDEV-13868 cannot insert 1288481126 in a timestamp column in Europe/Moscow 2017-09-22 13:58:00 +02:00
one_thread_per_connection.require
openssl_1.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
openssl_6975,tlsv10.result ssl tests: update ciphers as in 10.2 2017-08-08 09:56:38 +02:00
openssl_6975,tlsv12.result ssl tests: update ciphers as in 10.2 2017-08-08 09:56:38 +02:00
order_by-mdev-10122.result MDEV-10122: MariaDB does not support group functions in some contexts where MySQL does 2017-02-14 07:46:58 +02:00
order_by.result MDEV-25682 Explain shows an execution plan different from actually executed 2021-05-14 16:43:36 -07:00
order_by_innodb.result MDEV-25858: Query results are incorrect when indexes are added 2021-07-15 18:56:08 +03:00
order_by_optimizer.result
order_by_optimizer_innodb.result
order_by_sortkey.result
order_by_zerolength-4285.result Merge 10.1 into 10.2 2018-11-06 08:41:48 +02:00
order_fill_sortbuf.result
outfile.result
outfile_loaddata.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
overflow.result
packet.result
parser.result precedence bugfixing 2020-10-23 15:53:41 +02:00
parser_bug21114_innodb.result
parser_not_embedded.result
parser_stack.result
partition.result Merge 10.1 into 10.2 2020-10-21 14:02:04 +03:00
partition_alter.result Add an end-of-test marker to ease merges 2020-05-27 09:56:37 +03:00
partition_binlog.result
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
partition_cache_innodb.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_cache_myisam.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_charset.result
partition_column.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_column_prune.result
partition_csv.result
partition_datatype.result Merge branch '10.1' into 10.2 2017-10-24 14:53:18 +02:00
partition_debug_sync.result Merge 10.1 into 10.2 2019-10-11 18:38:18 +03:00
partition_default.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_disabled.result
partition_error.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
partition_example.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_exchange.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_explicit_prune.result Merge 10.1 into 10.2 2018-11-06 08:41:48 +02:00
partition_grant.result
partition_hash.result
partition_innodb.result MDEV-18428 Memory: If transactional=0 is specified in CREATE TABLE, it is not possible to ALTER TABLE 2021-01-11 21:54:47 +01:00
partition_innodb_plugin.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_innodb_semi_consistent.result
partition_innodb_stmt.result
partition_key_cache.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
partition_list.result MDEV-16101: ADD PARTITION on table partitioned by list does not work with more than 32 list values. 2018-05-14 16:30:25 -07:00
partition_mgm.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_mgm_err.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_mgm_err2.result
partition_myisam.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_not_blackhole.result
partition_not_windows.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_open_files_limit.result
partition_order.result
partition_pruning.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
partition_range.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_rename_longfilename.result
partition_symlink.result Merge branch '10.1' into 10.2 2017-09-19 12:43:02 +03:00
partition_sync.result
partition_truncate.result
partition_utf8.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
partition_windows.result MDEV-14026 ALTER TABLE ... DELAY_KEY_WRITE=1 creates table copy for partitioned MyISAM table with DATA DIRECTORY/INDEX DIRECTORY options 2017-12-25 15:18:21 +01:00
perror-win.result MDEV-22545: my_vsnprintf behaves not as in C standard 2020-05-24 21:27:08 +02:00
perror.result MDEV-22545: my_vsnprintf behaves not as in C standard 2020-05-24 21:27:08 +02:00
plugin.result MDEV-21258: Can't uninstall plugin if the library file doesn't exist 2020-07-29 12:34:53 +02:00
plugin_auth.result switch to CC 3.1 2019-07-20 09:09:28 +02:00
plugin_auth_qa.result
plugin_auth_qa_1.result
plugin_auth_qa_2.result
plugin_auth_qa_3.result
plugin_innodb.result
plugin_load.result
plugin_load_option.result
plugin_loaderr.result
plugin_maturity.result
plugin_not_embedded.result Merge branch '10.1' into 10.2 2019-07-26 13:39:17 +02:00
plugin_vars.result Bug#29363867: LOST CONNECTION TO MYSQL SERVER DURING QUERY 2021-04-27 18:21:01 +02:00
pool_of_threads.result MDEV-23879 server hangs with threadpool, compression, and client pipelining 2020-10-03 00:24:53 +02:00
precedence.result MDEV-24194 View definition corruption 2020-12-10 08:45:20 +01:00
precedence_bugs.result MDEV-17408 VIEW is incorrectly defined for a combination of = and BETWEEN 2020-10-23 15:53:41 +02:00
preload.result
processlist.result Merge 10.1 into 10.2 2019-10-25 12:57:36 +03:00
processlist_notembedded.result MDEV-23752 SHOW EXPLAIN FOR thd waits for sleep 2021-07-31 09:27:53 +02:00
profiling.result
progress_976225.result
ps.result MDEV-25576: The statement EXPLAIN running as regular statement and as prepared statement produces different results for UPDATE with subquery 2021-05-30 17:31:55 +07: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
ps_ddl.result Merge branch '10.1' into 10.2 2016-12-29 13:23:18 +01:00
ps_ddl1.result
ps_error.result Merge 10.1 into 10.2 2019-03-26 17:38:54 +02:00
ps_grant.result
ps_innodb.result Merge branch '5.5' into 10.1 2019-07-25 13:27:11 +02:00
ps_max_subselect-5113.result
ps_not_windows.result
ps_qc_innodb.result Merge branch '10.1' into 10.2 2018-03-25 13:02:52 +02:00
ps_show_log.result MDEV-24208 SHOW RELAYLOG EVENTS command is not supported in the prepared statement protocol yet 2021-01-13 16:16:13 +07:00
query_cache.result MDEV-24033: SIGSEGV in __memcmp_avx2_movbe from queue_insert | SIGSEGV in __memcmp_avx2_movbe from native_compare 2020-12-10 08:45:20 +01:00
query_cache_28249.result
query_cache_debug.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
query_cache_innodb.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
query_cache_merge.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
query_cache_notembedded.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
query_cache_ps_no_prot.result
query_cache_ps_ps_prot.result
query_cache_with_views.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
quick_select_4161.result
range.result MDEV-22251: get_key_scans_params: Conditional jump or move depends on uninitialised value 2021-01-28 20:46:13 +03:00
range_innodb.result Merge 10.1 into 10.2 2020-04-14 16:13:35 +03:00
range_interrupted-13751.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
range_mrr_icp.result MDEV-22251: get_key_scans_params: Conditional jump or move depends on uninitialised value 2021-01-28 20:46:13 +03:00
range_vs_index_merge.result Merge 5.5 into 10.1 2020-04-01 10:24:36 +03:00
range_vs_index_merge_innodb.result MDEV-23811: With large number of indexes optimizer chooses an inefficient plan 2020-11-09 13:51:32 -08:00
read_many_rows_innodb.result
read_only.result Merge branch '10.1' into 10.2 2018-12-30 18:30:29 +01:00
read_only_innodb.result Merge branch '10.1' into 10.2 2018-06-21 23:47:39 +02:00
rename.result Merge 10.1 into 10.2 2018-08-02 08:19:57 +03:00
renamedb.result
reopen_temp_table.result MDEV-17070 Table corruption or Assertion table->file->stats.records > 0 || error' or Assertion !is_set() || (m_status == DA_OK_BULK && is_bulk_op())' failed upon actions on temporary table 2019-03-12 09:51:42 +01:00
repair.result MDEV-17153 server crash on repair table ... use_frm 2020-05-27 15:56:40 +02:00
repair_symlink-5543.result Update test case 2019-07-01 13:15:20 +03:00
replace.result
reset_connection.result MDEV-18281 COM_RESET_CONNECTION changes the connection encoding 2019-02-02 17:32:15 +01: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 Merge 10.1 into 10.2 2019-02-03 17:22:05 +02:00
row-checksum.result Merge 10.1 into 10.2 2019-02-03 17:22:05 +02:00
row.result cleanup: make a couple of tests more robust 2017-02-13 18:12:05 +01:00
rowid_order_innodb.result
rpl_mysql_upgrade_slave_repo_check.result MDEV-10047: table-based master info repository 2020-03-13 14:00:03 +05:30
rpl_mysqldump_slave.result
schema.result
second_frac-9175.result
secure_file_priv_win.result
select.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
select_debug.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
select_found.result Revert "MDEV-22830: SQL_CALC_FOUND_ROWS not working properly for single SELECT for DUAL" 2020-06-10 09:34:56 +02:00
select_jcl6.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
select_pkeycache.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
select_safe.result
selectivity.result MDEV-19474: Histogram statistics are used even with optimizer_use_condition_selectivity=3 2021-02-16 11:53:13 +05:30
selectivity_innodb.result MDEV-25013: SIGSEGV in best_extension_by_limited_search | SIGSEGV in restore_prev_nj_state 2021-07-03 12:04:18 +03:00
selectivity_no_engine.result MDEV-23937: SIGSEGV in looped best_extension_by_limited_search from greedy_search 2021-07-03 12:04:08 +03:00
servers.result
session_tracker_last_gtid.result update results after CONC-351 fix 2018-11-12 11:46:13 +01:00
set_password.result MDEV-16774 SET PASSWORD and ALTER USER with slightly different results 2018-11-01 15:48:15 +01:00
set_statement.result MDEV-24860: Incorrect behaviour of SET STATEMENT in case it is executed as a prepared statement 2021-02-25 14:36:09 +07:00
set_statement_debug.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
set_statement_notembedded.result
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
shm.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
show.result MDEV-21603 Crashing SHOW TABLES with derived table in WHERE condition 2021-05-04 09:01:55 +02:00
show_bad_definer-5553.result
show_check.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
show_create_user.result Revert "[MDEV-7978] add show create user" 2020-09-24 13:58:29 +10:00
show_explain.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
show_explain_non_select.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
show_explain_ps.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
show_function_with_pad_char_to_full_length.result MDEV-13149 -- show function status now works with PAD_CHAR_TO_FULL_LENGTH 2017-10-10 16:16:12 +03:00
show_grants_with_plugin-7985.result MDEV-16774 SET PASSWORD and ALTER USER with slightly different results 2018-11-01 15:48:15 +01:00
show_profile.result
show_row_order-9226.result
shutdown.result MDEV-9592 - New 'Normal shutdown' log format can be confusing 2018-03-13 15:53:19 +04:00
sighup-6580.result
signal.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
signal_code.result
signal_demo1.result
signal_demo2.result
signal_demo3.result
signal_sqlmode.result
single_delete_update.result
single_delete_update_innodb.result
skip_grants.result MDEV-22966 Server crashes or hangs with SET ROLE when started with skip-grant-tables 2021-01-11 21:54:47 +01:00
skip_log_bin.result
skip_name_resolve.result MDEV-26081 set role crashes when a hostname cannot be resolved 2021-07-02 19:21:51 +02:00
slowlog_enospace-10508.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
sp-big.result
sp-bugs.result
sp-bugs2.result
sp-code.result MDEV-23408 Wrong result upon query from I_S and further Assertion `!alias_arg || strlen(alias_arg->str) == alias_arg->length' failed with certain connection charset 2021-10-14 10:16:23 +04:00
sp-destruct.result Merge 10.1 into 10.2 2018-04-24 09:39:45 +03: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-22058: Assertion `!is_set() || (m_status == DA_OK_BULK && is_bulk_op())' failed in Diagnostics_area::set_ok_status 2020-07-12 20:03:32 +05:30
sp-fib.result
sp-group.result
sp-innodb.result Merge branch '10.1' into 10.2 2018-05-10 13:01:42 +02: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 Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
sp-threads.result
sp-ucs2.result MDEV-12161 Can't specify collation for virtual columns 2021-01-11 21:54:47 +01:00
sp-vars.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
sp.result Bug#29363867: LOST CONNECTION TO MYSQL SERVER DURING QUERY 2021-04-28 11:31:18 +02:00
sp2.result Fixed assert in Aria on SHOW PROCEDURE STATUS 2020-05-19 03:42:54 +03:00
sp_gis.result
sp_missing_4665.result
sp_notembedded.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
sp_stress_case.result
sp_sync.result
sp_trans.result Merge branch '10.1' into 10.2 2019-03-15 21:00:41 +01:00
sp_trans_log.result
sql_mode.result MDEV-12390 Wrong error line numbers reported with sql_mode=IGNORE_SPACE 2017-03-29 07:21:34 +04:00
ssl-big.result
ssl.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
ssl_8k_key.result
ssl_7937,nossl.result
ssl_7937.result
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_cipher.result Fix tests not to fail with OpenSSL 1.1.1 with TLSv1.3 2019-01-25 19:57:37 +01:00
ssl_compress.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
ssl_connect.result
ssl_crl.result SSL test fixes 2019-03-01 12:41:05 -05:00
ssl_crl_clients.result SSL test fixes 2019-03-01 12:41:05 -05:00
ssl_system_ca,bad.result new C/C and --ssl-verify-server-cert tests 2020-01-23 10:46:21 +01:00
ssl_system_ca.result new C/C and --ssl-verify-server-cert tests 2020-01-23 10:46:21 +01:00
ssl_timeout-9836.result
ssl_timeout.result
ssl_verify_ip.result MDEV-18131 MariaDB does not verify IP addresses from subject alternative 2019-04-28 12:49:59 +02:00
stack-crash.result
stat_tables-enospc.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
stat_tables.result MDEV-23753: SIGSEGV in Column_stat::store_stat_fields 2021-01-12 18:47:35 +05:30
stat_tables_disabled.result
stat_tables_innodb.result MDEV-23753: SIGSEGV in Column_stat::store_stat_fields 2021-01-12 18:47:35 +05:30
stat_tables_innodb_debug.result
stat_tables_myisam_debug.result
stat_tables_par.result MDEV-10804 main.stat_tables_par fails sporadically in buildbot 2017-05-11 17:28:47 +03:00
stat_tables_par_innodb.result MDEV-10804 main.stat_tables_par fails sporadically in buildbot 2017-05-11 17:28:47 +03:00
stat_tables_partition.result MDEV-21472: ALTER TABLE ... ANALYZE PARTITION ... with EITS reads and locks all rows 2020-07-29 23:27:40 +03:00
stat_tables_rbr.result Merge branch '10.1' into 10.2 2020-08-02 11:05:29 +02:00
stat_tables_repl.result
statistics.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
statistics_close.result Merge remote-tracking branch 'origin/10.1' into 10.2 2018-05-24 18:57:52 +03:00
statistics_index_crash-7362.result
status.result MDEV-11227 - mysqlimport -l doesn't issue UNLOCK TABLES 2016-12-21 13:18:45 +04:00
status2.result Correct the value of global memory_used 2021-03-08 14:54:05 +01:00
status_bug17954.result
str_to_datetime_457.result
strict.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
strict_autoinc_1myisam.result
strict_autoinc_2innodb.result
strict_autoinc_3heap.result
subselect-crash_15755.result MDEV-15755 Query crashing MariaDB in cleanup_after_query 2018-05-15 12:10:48 +02:00
subselect.result MDEV-25002 ON expressions cannot contain outer references 2021-03-09 00:25:28 -08:00
subselect2.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
subselect3.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
subselect3_jcl6.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
subselect4.result MDEV-22462: Item_in_subselect::create_single_in_to_exists_cond(JOIN *, Item **, Item **): Assertion `false' failed. 2021-05-21 17:46:48 +03:00
subselect_cache.result Merge branch '10.1' into 10.2 2019-07-26 07:03:39 +02:00
subselect_debug.result
subselect_exists2in.result MDEV-25407: EXISTS subquery with correlation in ON expression crashes 2021-04-16 17:15:22 +03:00
subselect_exists2in_costmat.result
subselect_extra.result MDEV-16088: Pushdown into materialized views/derived tables doesn't 2018-05-12 12:42:42 +02:00
subselect_extra_no_semijoin.result Merge 10.1 into 10.2 2018-08-21 15:20:34 +03:00
subselect_gis.result
subselect_innodb.result Merge 10.1 into 10.2 2020-09-22 15:21:43 +03:00
subselect_mat.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
subselect_mat_cost.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
subselect_mat_cost_bugs.result Merge 10.1 into 10.2 2018-08-02 08:19:57 +03:00
subselect_no_exists_to_in.result MDEV-25002 ON expressions cannot contain outer references 2021-03-09 00:25:28 -08:00
subselect_no_mat.result MDEV-25002 ON expressions cannot contain outer references 2021-03-09 00:25:28 -08:00
subselect_no_opts.result MDEV-25002 ON expressions cannot contain outer references 2021-03-09 00:25:28 -08:00
subselect_no_scache.result MDEV-25002 ON expressions cannot contain outer references 2021-03-09 00:25:28 -08:00
subselect_no_semijoin.result MDEV-25002 ON expressions cannot contain outer references 2021-03-09 00:25:28 -08:00
subselect_notembedded.result
subselect_nulls.result MDEV-7339 Server crashes in Item_func_trig_cond::val_int 2017-07-12 10:39:02 +02:00
subselect_partial_match.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
subselect_sj.result Merge 10.1 into 10.2 2019-10-25 12:57:36 +03:00
subselect_sj2.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
subselect_sj2_jcl6.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
subselect_sj2_mat.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
subselect_sj_aria.result
subselect_sj_jcl6.result Merge 10.1 into 10.2 2019-10-25 12:57:36 +03:00
subselect_sj_mat.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
subselect_sj_nonmerged.result MDEV-16374: Filtered shows 0 for materilization scan for a semi join, which makes optimizer always picks 2018-06-09 11:40:28 +05:30
sum_distinct-big.result MDEV-23955 main.multi_update_big times out 2020-10-14 19:18:39 +03:00
sum_distinct.result
symlink-aria-11902.result Merge branch '10.1' into 10.2 2017-03-30 12:48:42 +02:00
symlink-myisam-11902.result Merge branch '10.1' into 10.2 2017-03-30 12:48:42 +02:00
symlink.result Merge branch '10.1' into 10.2 2017-09-19 12:43:02 +03:00
synchronization.result
sysdate_is_now.result
system_mysql_db.result MDEV-19679 - CREATE SERVER needs tweaks for compatibility with CONNECT engine 2019-09-20 01:54:38 -07:00
system_mysql_db_fix40123.result MDEV-19679 - CREATE SERVER needs tweaks for compatibility with CONNECT engine 2019-09-20 01:54:38 -07: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 MDEV-18428 Memory: If transactional=0 is specified in CREATE TABLE, it is not possible to ALTER TABLE 2021-01-11 21:54:47 +01:00
table_elim_debug.result
table_keyinfo-6838.result
table_options-5867.result
table_options.result
tablelock.result
tablespace.result
tc_heuristic_recover.result cleanup: remove test include file, clarify the comment 2017-10-04 18:36:30 +02:00
temp_table.result MDEV-21695 Server crashes in TABLE::evaluate_update_default_function upon UPDATE on temporary table 2020-06-17 11:19:50 +04:00
temp_table_frm.result
temp_table_symlink.result MDEV-23569 temporary tables can overwrite existing files 2020-08-25 20:47:52 +02:00
temporal_literal.result
temporal_scale_4283.result
thread_id_overflow.result MDEV-15089 Ensure that connection ID is in 32bit range 2018-02-01 09:01:15 +00:00
timezone.result
timezone2.result Tests for MDEV-11895 NO_ZERO_DATE affects timestamp values without any warnings 2019-04-29 10:36:57 +04:00
timezone3.result
timezone4.result
timezone_grant.result
tmp_table_count-7586.result
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
trigger.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
trigger_no_defaults-11698.result Merge branch '10.1' into 10.2 2017-03-30 12:48:42 +02: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 Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
truncate.result fix main.truncate failures in --embedded 2021-09-09 09:57:39 +02: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
truncate_notembedded.result Give less memory to get reliable error. 2021-09-16 17:29:37 +02: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 Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02: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 Merge branch '10.1' into 10.2 2019-03-29 10:58:20 +01:00
type_date.result Merge 10.1 into 10.2 2020-08-13 07:38:35 +03:00
type_datetime.result Merge 10.1 into 10.2 2020-08-13 07:38:35 +03:00
type_datetime_hires.result MDEV-13089 identifier quoting in partitioning 2017-07-05 17:15:59 +02:00
type_decimal.result MDEV-24790 CAST('0e1111111111' AS DECIMAL(38,0)) returns a wrong result 2021-02-08 16:19:45 +04: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 Merge branch '10.1' into 10.2 2020-08-02 11:05:29 +02:00
type_int.result Merge 10.1 into 10.2 2019-12-23 07:14:51 +02:00
type_json.result MDEV-16630: Ambiguous error message when check constraint matches table name 2018-07-01 22:32:55 +03:00
type_nchar.result
type_newdecimal-big.result
type_newdecimal.result Merge branch '10.1' into 10.2 2020-10-29 15:16:53 +01:00
type_num.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
type_num_innodb.result
type_ranges.result Merge branch '10.1' into 10.2 2020-10-29 15:16:53 +01:00
type_set.result Merge 10.1 into 10.2 2020-05-13 11:12:31 +03:00
type_temporal_innodb.result MDEV-15570 Assertion `Item_cache_temporal::field_type() != MYSQL_TYPE_TIME' failed in Item_cache_temporal::val_datetime_packed 2018-03-23 01:11:14 +01:00
type_temporal_mysql56.result store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
type_time.result MDEV-21619 Server crash or assertion failures in my_datetime_to_str 2020-06-11 15:33:16 +04:00
type_time_6065.result Merge branch '10.1' into 10.2 2018-02-11 13:47:16 +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-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04: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 Merge branch '10.1' into 10.2 2017-10-24 14:53:18 +02:00
type_year.result tests for YEAR(N) 2020-12-10 08:45:20 +01:00
udf.result Bug #31674599: THE UDF_INIT() FUNCTION CAUSE SERVER CRASH 2021-04-27 18:21:01 +02:00
udf_debug_sync.result
udf_notembedded.result
udf_query_cache.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
udf_skip_grants.result
union.result MDEV-10120: Wrong result of UNION .. ORDER BY GROUP_CONCAT() 2020-07-10 00:01:24 +05:30
union_crash-714.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
unsafe_binlog_innodb.result
update.result MDEV-18945 Assertion `fixed == 1' failed in Item_cond_and::val_int 2019-03-16 15:08:17 -07:00
update_ignore_216.result
update_innodb.result MDEV-18300: ASAN error in Field_blob::get_key_image upon UPDATE with subquery 2019-04-11 13:05:01 +05:30
upgrade.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
user_limits.result MDEV-17852 Altered connection limits for user have no effect 2021-01-11 21:54:47 +01:00
user_var-binlog.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
user_var.result Merge 10.1 into 10.2 2017-10-02 11:16:53 +03:00
userstat-badlogin-4824.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
userstat.result MDEV-25242 Server crashes in check_grant upon invoking function with userstat enabled 2021-04-03 12:12:46 +02:00
varbinary.result
variables-notembedded.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
variables.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
variables_community.result
view.result MDEV-26299: Some views force server (and mysqldump) to generate invalid SQL for their definitions 2021-10-18 23:00:15 +02:00
view_alias.result Merge branch '10.1' into 10.2 2019-07-26 07:03:39 +02:00
view_debug.result
view_grant.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
wait_timeout.result Fix threadpool to report connections aborted due to wait timeout. 2017-08-30 14:37:16 +00:00
warnings.result MDEV-14576 Include full name of object in message about incorrect value for column. 2018-12-16 02:21:41 +04:00
warnings_debug.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
warnings_engine_disabled.result
win.result MDEV-25565 Crash on 2-nd execution of SP/PS for query calculating window functions 2021-07-20 11:26:33 -07:00
win_as_arg_to_aggregate_func.result MDEV-13774: Server Crash on Execute of SQL Statement 2017-09-19 15:14:10 +03:00
win_avg.result
win_big-mdev-10092.result MDEV-10092: Server crashes in in ha_heap::rnd_pos / Table_read_cursor::get_next 2017-02-15 14:09:27 +02:00
win_big-mdev-11697.result MDEV-11697: Lead Window Function Returns Incorrect Results 2017-02-15 14:09:27 +02: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
win_empty_over.result Fixed bug mdev-11745. 2017-02-09 19:34:01 -08:00
win_first_last_value.result MDEV-12779 Oracle/DB2 Compatibility Implicit Ordering for ROW_NUMBER OVER 2018-11-01 21:15:55 +02:00
win_i_s.result Add test case for new window functions status var 2016-09-24 15:12:34 +02:00
win_insert_select.result MDEV-13358: FIRST_V throw SQL Fehler (1292): Incorrect datetime value 2017-09-19 15:14:10 +03:00
win_lead_lag.result MDEV-15204: lag/lead function order list mandatory 2018-08-25 18:47:14 +03: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 MDEV-9911: NTILE must return an error when parameter is not stable 2020-07-28 06:35:32 +02:00
win_orderby.result
win_percent_cume.result MDEV-12779 Oracle/DB2 Compatibility Implicit Ordering for ROW_NUMBER OVER 2018-11-01 21:15:55 +02:00
win_rank.result MDEV-12779 Oracle/DB2 Compatibility Implicit Ordering for ROW_NUMBER OVER 2018-11-01 21:15:55 +02:00
win_std.result Fix win_std nondeterministic results 2016-09-24 15:12:34 +02:00
win_sum.result
windows.result
xa.result MDEV-22445 Crash on HANDLER READ NEXT after XA PREPARE 2021-10-20 15:15:21 +03:00
xa_binlog.result
xa_sync.result
xml.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
xtradb_mrr.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00