mariadb/mysql-test/main
Sergey Vojtovich 6d1e609341 MDEV-19749 - MDL scalability regression after backup locks
Statements that intend to modify data have to acquire protection
against ongoing backup. Prior to backup locks, protection against
FTWRL was acquired in form of 2 shared metadata locks of GLOBAL
(global read lock) and COMMIT namespaces. These two namespaces
were separate entities, they didn't share data structures and
locking primitives. And thus they were separate contention
points.

With backup locks, introduced by 7a9dfdd, these namespaces were
combined into a single BACKUP namespace. It became a single
contention point, which doubled load on BACKUP namespace data
structures and locking primitives compared to GLOBAL and COMMIT
namespaces. In other words system throughput has halved.

MDL fast lanes solve this problem by allowing multiple contention
points for single MDL_lock. Fast lane is scalable multi-instance
registry for leightweight locks. Internally it is just a list of
granted tickets, close counter and a mutex.

Number of fast lanes (or contention points) is defined by the
metadata_locks_instances system variable. Value of 1 disables fast
lanes and lock requests are served by conventional MDL_lock data
structures.

Since fast lanes allow arbitrary number of contention points, they
outperform pre-backup locks GLOBAL and COMMIT.

Fast lanes are enabled only for BACKUP namespace. Support for other
namespaces is to be implemented separately.

Lock types are divided in 2 categories: lightweight and heavyweight.

Lightweight lock types represent DML: MDL_BACKUP_DML,
MDL_BACKUP_TRANS_DML, MDL_BACKUP_SYS_DML, MDL_BACKUP_DDL,
MDL_BACKUP_ALTER_COPY, MDL_BACKUP_COMMIT. They are fully compatible
with each other. Normally served by corresponding fast lane, which is
determined by thread_id % metadata_locks_instances.

Heavyweight lock types represent ongoing backup: MDL_BACKUP_START,
MDL_BACKUP_FLUSH, MDL_BACKUP_WAIT_FLUSH, MDL_BACKUP_WAIT_DDL,
MDL_BACKUP_WAIT_COMMIT, MDL_BACKUP_FTWRL1, MDL_BACKUP_FTWRL2,
MDL_BACKUP_BLOCK_DDL. These locks are always served by conventional
MDL_lock data structures. Whenever such lock is requested, fast
lanes are closed and all tickets registered in fast lanes are
moved to conventional MDL_lock data structures. Until such locks
are released or aborted, lightweight lock requests are served by
conventional MDL_lock data structures.

Strictly speaking moving tickets from fast lanes to conventional
MDL_lock data structures is not required. But it allows to reduce
complexity and keep intact methods like: MDL_lock::visit_subgraph(),
MDL_lock::notify_conflicting_locks(), MDL_lock::reschedule_waiters(),
MDL_lock::can_grant_lock().

It is not even required to register tickets in fast lanes. They
can be implemented basing on an atomic variable that holds two
counters: granted lightweight locks and granted/waiting heavyweight
locks. Similarly to MySQL solution, which roughly speaking has
"single atomic fast lane". However it appears to be it won't bring
any better performance, while code complexity is going to be much
higher.
2025-06-25 21:42:51 +03:00
..
1st.result MDEV-9077 Use sys schema in bootstrapping, incl. mtr 2021-03-18 08:02:48 +01:00
1st.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
aborted_clients.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
aborted_clients.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
adddate_454.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
adddate_454.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
alias.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
alias.test Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
almost_full.result Add support for minimum field width for strings to my_vsnprintf() 2021-05-19 22:27:29 +02:00
almost_full.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
alter_events.result MDEV-29827 collateral cleanup 2023-07-02 12:15:11 +02:00
alter_events.test MDEV-29827 collateral cleanup 2023-07-02 12:15:11 +02:00
alter_table-big.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
alter_table-big.test Fix build without either ENABLED_DEBUG_SYNC or DBUG_OFF 2022-09-23 17:37:52 +03:00
alter_table.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
alter_table.test reject invalid spatial key declarations in the parser 2024-11-05 14:00:47 -08:00
alter_table_autoinc-5574.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
alter_table_autoinc-5574.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
alter_table_combinations,aria.rdiff Remove dates from all rdiff files 2025-01-05 16:40:11 +02:00
alter_table_combinations,heap.rdiff Remove dates from all rdiff files 2025-01-05 16:40:11 +02:00
alter_table_combinations.combinations move alter_table combinations to a separate test file 2022-05-30 09:58:40 +02:00
alter_table_combinations.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
alter_table_combinations.test move alter_table combinations to a separate test file 2022-05-30 09:58:40 +02:00
alter_table_debug.result MDEV-19612 Split ALTER related data type specific code in sql_table.cc to Type_handler 2019-05-28 15:50:11 +04:00
alter_table_debug.test Adding a forgotten --source include/have_debug.inc into alter_table_debug.test 2019-05-28 17:02:50 +04:00
alter_table_errors.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
alter_table_errors.test dirty merge 2019-02-07 13:59:31 +01:00
alter_table_lock.result MDEV-28943 Online alter fails under LOCK TABLE with ER_ALTER_OPERATION_NOT_SUPPORTED_REASON 2023-08-15 10:16:12 +02:00
alter_table_lock.test fix main.alter_table_{online,lock} 2023-08-15 10:16:13 +02:00
alter_table_locknone.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
alter_table_locknone.test support 'alter online table t1 page_checksum=0' 2023-08-15 10:16:11 +02:00
alter_table_locknone_notembedded.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
alter_table_locknone_notembedded.test support 'alter online table t1 page_checksum=0' 2023-08-15 10:16:11 +02:00
alter_table_mdev539_maria.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
alter_table_mdev539_maria.test MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
alter_table_mdev539_myisam.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
alter_table_mdev539_myisam.test MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
alter_table_online.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
alter_table_online.test fix sporadic failures of main.alter_table_online 2025-01-17 14:16:41 +01:00
alter_table_online_debug.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
alter_table_online_debug.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
alter_table_trans.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
alter_table_trans.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
alter_table_upgrade_aria.result MDEV-29481 mariadb-upgrade prints confusing statement 2022-10-22 14:22:20 +04:00
alter_table_upgrade_aria.test MDEV-29481 mariadb-upgrade prints confusing statement 2022-10-22 14:22:20 +04:00
alter_table_upgrade_mdev29481_myisam_aria.inc MDEV-29481 mariadb-upgrade prints confusing statement 2022-10-22 14:22:20 +04:00
alter_table_upgrade_myisam.result MDEV-29481 mariadb-upgrade prints confusing statement 2022-10-22 14:22:20 +04:00
alter_table_upgrade_myisam.test MDEV-29481 mariadb-upgrade prints confusing statement 2022-10-22 14:22:20 +04:00
alter_table_upgrade_myisam_debug.result MDEV-29481 mariadb-upgrade prints confusing statement 2022-10-22 14:22:20 +04:00
alter_table_upgrade_myisam_debug.test MDEV-29481 mariadb-upgrade prints confusing statement 2022-10-22 14:22:20 +04:00
alter_user.result Merge branch '10.4' into 10.5 2022-02-01 20:33:04 +01:00
alter_user.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
analyze.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
analyze.test MDEV-32531 MSAN / Valgrind errors in Item_func_like::get_mm_leaf with temporal field 2023-10-30 14:44:26 +02:00
analyze_debug.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
analyze_debug.test
analyze_engine_stats.combinations MDEV-31577: Make ANALYZE FORMAT=JSON print innodb stats 2023-07-21 16:50:11 +03:00
analyze_engine_stats.result MDEV-18478 ANALYZE for statement should show selectivity of ICP, part#2 2024-04-23 22:55:22 +03:00
analyze_engine_stats.test MDEV-31764: ASAN use-after-poison in trace_engine_stats in ANALYZE JSON 2023-08-01 22:32:54 +03:00
analyze_engine_stats2.opt Stabilize analyze_engine_stats2.test 2024-07-04 15:24:49 +03:00
analyze_engine_stats2.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
analyze_engine_stats2.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
analyze_format_json.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
analyze_format_json.test MDEV-18478 ANALYZE for statement should show selectivity of ICP, part#1 2024-04-23 22:55:22 +03:00
analyze_format_json_emb.result MDEV-31121: ANALYZE statement produces 0 for all timings in embedded server 2023-04-25 13:47:46 +03:00
analyze_format_json_emb.test MDEV-31121: ANALYZE statement produces 0 for all timings in embedded server 2023-04-25 13:47:46 +03:00
analyze_format_json_timings.result MDEV-18478 ANALYZE for statement should show selectivity of ICP, part#2 2024-04-23 22:55:22 +03:00
analyze_format_json_timings.test MDEV-30972: ANALYZE FORMAT=JSON: some time is unaccounted-for in BNL-H join 2023-04-04 12:18:37 +03:00
analyze_stmt.result Merge branch '10.11' into 11.2 2024-10-29 16:42:46 +01:00
analyze_stmt.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
analyze_stmt_orderby.result MDEV-18478 ANALYZE for statement should show selectivity of ICP, part#2 2024-04-23 22:55:22 +03:00
analyze_stmt_orderby.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
analyze_stmt_prefetch_count.opt MDEV-34190: r_engine_stats.pages_read_count is unrealistically low 2024-07-04 15:24:49 +03:00
analyze_stmt_prefetch_count.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
analyze_stmt_prefetch_count.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
analyze_stmt_privileges.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
analyze_stmt_privileges.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
analyze_stmt_privileges2.result MDEV-28883 Re-design the upper level of handling UPDATE and DELETE statements 2023-03-15 17:35:22 -07:00
analyze_stmt_privileges2.test MDEV-28883 Re-design the upper level of handling UPDATE and DELETE statements 2023-03-15 17:35:22 -07:00
analyze_stmt_slow_query_log-master.opt MDEV-31558 Add InnoDB engine information to the slow query log 2023-07-07 12:53:18 +03:00
analyze_stmt_slow_query_log.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
analyze_stmt_slow_query_log.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
ansi.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ansi.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
aria_icp_debug.result MDEV-22761: innodb row_search_idx_cond_check handle CHECK_ABORTED_BY_USER 2020-10-14 15:14:46 +03:00
aria_icp_debug.test MDEV-22761: innodb row_search_idx_cond_check handle CHECK_ABORTED_BY_USER 2020-10-14 15:14:46 +03:00
assign_key_cache.result Vanilla cleanups and refactorings 2021-10-26 17:07:46 +02:00
assign_key_cache.test Merge branch '10.2' into 10.3 2018-05-11 13:15:10 +02:00
assign_key_cache_debug.result Merge branch '10.2' into 10.3 2018-05-11 13:15:10 +02:00
assign_key_cache_debug.test Merge branch '10.2' into 10.3 2018-05-11 13:15:10 +02:00
auth_named_pipe-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
auth_named_pipe.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
auth_named_pipe.test Merge 10.2 into 10.3 2021-05-10 09:09:50 +03:00
auth_rpl-slave.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
auth_rpl.result MDEV-17658 change the structure of mysql.user table 2018-12-12 00:31:44 +01:00
auth_rpl.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
auto_increment.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
auto_increment.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
auto_increment_ranges.inc MDEV-17333 Assertion in update_auto_increment() upon exotic LOAD 2019-10-10 00:20:34 +03:00
auto_increment_ranges_innodb.result MDEV-21842 auto_increment does not increment with compound primary key on partitioned table. 2020-11-23 14:12:30 +04:00
auto_increment_ranges_innodb.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
auto_increment_ranges_myisam.result MDEV-17333 Assertion in update_auto_increment() upon exotic LOAD 2019-10-10 00:20:34 +03:00
auto_increment_ranges_myisam.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
backup_aria.result Added syntax and implementation for BACKUP STAGE's 2018-12-09 22:12:27 +02:00
backup_aria.test MDEV-27691: make working view-protocol 2022-09-23 19:47:30 +07:00
backup_interaction.result Merge branch '11.0' into 11.1 2023-12-19 20:11:54 +01:00
backup_interaction.test Merge branch '11.0' into 11.1 2023-12-19 20:11:54 +01:00
backup_lock.result Merge branch '11.1' into 11.2 2023-12-20 23:43:05 +01:00
backup_lock.test Merge branch '11.1' into 11.2 2023-12-20 23:43:05 +01:00
backup_lock_binlog.result minor cleanup of backup_lock_binlog.test, so that test passes also with statement binlog format 2021-12-08 14:28:42 +01:00
backup_lock_binlog.test minor cleanup of backup_lock_binlog.test, so that test passes also with statement binlog format 2021-12-08 14:28:42 +01:00
backup_lock_debug.result MDEV-18465 Logging of DDL statements during backup 2021-05-19 22:54:13 +02:00
backup_lock_debug.test MDEV-18465 Logging of DDL statements during backup 2021-05-19 22:54:13 +02:00
backup_locks.result Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
backup_locks.test Add --source include/long_test.inc to some tests 2025-03-15 11:15:54 +01:00
backup_log.inc Revert MDEV-25292 Atomic CREATE OR REPLACE TABLE 2022-10-27 23:13:41 +02:00
backup_log.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
backup_log.test Revert MDEV-25292 Atomic CREATE OR REPLACE TABLE 2022-10-27 23:13:41 +02:00
backup_priv.result Added syntax and implementation for BACKUP STAGE's 2018-12-09 22:12:27 +02:00
backup_priv.test MDEV-27691: make working view-protocol 2022-09-23 19:47:30 +07:00
backup_stages.result Merge branch '11.0' into 11.1 2023-12-19 20:11:54 +01:00
backup_stages.test Merge branch '11.0' into 11.1 2023-12-19 20:11:54 +01:00
backup_syntax.result Fixes for failures related to push for BACKUP LOCK 2019-01-15 09:56:33 +02:00
backup_syntax.test Fix trivial spelling errors 2023-03-24 12:54:05 +11:00
bad_frm_crash_5029.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
bad_frm_crash_5029.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bad_startup_options.result Add MTR to ensure startup fails with invalid ssl-cipher 2025-01-09 11:22:11 +11:00
bad_startup_options.test Add MTR to ensure startup fails with invalid ssl-cipher 2025-01-09 11:22:11 +11:00
bad_startup_options_debug.result MDEV-34437: handle error on getaddrinfo 2024-07-02 17:11:32 +10:00
bad_startup_options_debug.test MDEV-34437: handle error on getaddrinfo 2024-07-02 17:11:32 +10:00
bench_count_distinct.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bench_count_distinct.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bigint.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
bigint.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
binary.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
binary.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
binary_to_hex.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
binary_to_hex.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bind_address_resolution.opt MDEV-6536: make --bind=hostname to listen on both IPv6 and IPv4 addresses 2021-03-05 08:25:52 +11:00
bind_address_resolution.result MDEV-6536: mtr main.bind_address_resolution 2021-03-05 13:04:45 +11:00
bind_address_resolution.test MDEV-6536: mtr main.bind_address_resolution 2021-03-05 13:04:45 +11:00
bind_multiple_addresses_resolution.opt MDEV-24377: Accept comma separated addresses as --bind-address value (#2009) 2022-10-27 10:42:30 +01:00
bind_multiple_addresses_resolution.result MDEV-24377: Accept comma separated addresses as --bind-address value (#2009) 2022-10-27 10:42:30 +01:00
bind_multiple_addresses_resolution.test MDEV-24377: Accept comma separated addresses as --bind-address value (#2009) 2022-10-27 10:42:30 +01:00
blackhole.result MDEV-33410 VECTOR data type 2024-11-05 14:00:51 -08:00
blackhole.test MDEV-33410 VECTOR data type 2024-11-05 14:00:51 -08:00
blackhole_plugin.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
blackhole_plugin.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bool.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
bool.test MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
bootstrap-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bootstrap.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
bootstrap.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
bootstrap_innodb.result Merge branch '10.3' into 10.4 2020-10-31 21:06:49 +01:00
bootstrap_innodb.test sporadic failures of main.bootstrap 2022-09-26 15:01:36 +02:00
brackets.result MDEV-29167 new db-level SHOW CREATE ROUTINE privilege 2023-10-17 21:52:39 +02:00
brackets.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
bug39022.result MDEV-4750 follow-up: Reduce disabling innodb_stats_persistent 2021-08-31 13:55:02 +03:00
bug39022.test MDEV-24035 Failing assertion: UT_LIST_GET_LEN(lock.trx_locks) == 0 causing disruption and replication failure 2024-12-12 18:02:00 +02:00
bug46760-master.opt MDEV-29983 Deprecate innodb_file_per_table 2023-01-11 17:55:56 +02:00
bug46760.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
bug46760.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bug47671-master.opt MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
bug47671.result
bug47671.test MDEV-29615 mtr to use mariadb names 2022-10-21 18:37:13 +11:00
bug58669-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bug58669.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bug58669.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bug12427262.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
bug12427262.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
bug13633383.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
bug13633383.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
bulk_replace.result
bulk_replace.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
cache_innodb.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
cache_innodb.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
cache_temporal_4265.result MDEV-30345 DML does not find rows it is supposed to 2023-01-11 20:15:26 +02:00
cache_temporal_4265.test MDEV-30345 DML does not find rows it is supposed to 2023-01-11 20:15:26 +02:00
case.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
case.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
cast.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
cast.test MDEV-32645 CAST(AS UNSIGNED) fails with --view-protocol 2024-01-09 11:44:05 +04:00
change_user.result mysqltest: support MARIADB_OPT_RESTRICTED_AUTH 2024-05-21 19:40:03 +02:00
change_user.test mysqltest: support MARIADB_OPT_RESTRICTED_AUTH 2024-05-21 19:40:03 +02:00
change_user_notembedded.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
change_user_notembedded.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
charset_client_win.result Merge 10.2 into 10.3 2019-06-19 08:56:10 +03:00
charset_client_win.test MDEV-28982- race condition in charset_client_win. 2022-06-29 19:44:29 +02:00
charset_client_win_utf8mb4.result MDEV-26713 allow users with non-UTF8 passwords to login after upgrade. 2021-12-15 19:13:57 +01:00
charset_client_win_utf8mb4.test MDEV-26713 allow users with non-UTF8 passwords to login after upgrade. 2021-12-15 19:13:57 +01:00
check.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
check.test dirty merge 2019-02-07 13:59:31 +01:00
check_constraint.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
check_constraint.test Merge remote-tracking branch '11.3' into 11.4 2023-12-21 15:40:55 +01:00
check_constraint_innodb.result MDEV-19236 Improve error message for ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE 2019-04-12 12:28:09 +03:00
check_constraint_innodb.test dirty merge 2019-02-07 13:59:31 +01:00
check_constraint_show.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
check_constraint_show.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
check_view_protocol.result MDEV-27691: make working view-protocol 2022-02-16 13:06:23 +07:00
check_view_protocol.test MDEV-27691: make working view-protocol 2022-02-16 13:06:23 +07:00
cli_options_force_protocol_not_win.result
cli_options_force_protocol_not_win.test
cli_options_force_protocol_win.opt MDEV-14974: --port ignored for --host=localhost 2021-05-11 11:50:41 -06:00
cli_options_force_protocol_win.result MDEV-30639 Upgrade to 10.8 and later does not work on Windows 2023-06-29 19:16:45 +07:00
cli_options_force_protocol_win.test MDEV-30639 Upgrade to 10.8 and later does not work on Windows 2023-06-29 19:16:45 +07:00
client.result MDEV-34831: MDEV-34704 introduces a typo, --qick 2024-08-29 12:30:05 +02:00
client.test MDEV-34831: MDEV-34704 introduces a typo, --qick 2024-08-29 12:30:05 +02:00
client_xml.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
client_xml.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
column_compression.inc MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
column_compression.result Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
column_compression.test Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
column_compression_parts.result Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
column_compression_parts.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
column_compression_rpl.opt
column_compression_rpl.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
column_compression_rpl.test Fix test failures on s390x in test following main.column_compression_rpl 2024-01-12 17:22:08 +01:00
column_compression_utf16.result MDEV-15938 - TINYTEXT CHARACTER SET utf8 COMPRESSED truncates data 2018-04-30 19:34:08 +04:00
column_compression_utf16.test
comment_column.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
comment_column.test MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
comment_column2.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
comment_column2.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
comment_database.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
comment_database.test load_db_opt was always doing a file access if db.opt file did not exist 2025-02-26 12:40:07 +02:00
comment_index.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
comment_index.test MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
comment_table.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
comment_table.test Merge 10.4 into 10.5 2020-05-31 10:28:59 +03:00
comments.result
comments.test
commit.result Merge branch '10.11' into 11.4 2025-01-14 23:45:41 +01:00
commit.test Merge branch '10.11' into 11.4 2025-01-14 23:45:41 +01:00
commit_1innodb.result Merge from 10.4 to 10.5 2024-04-15 17:46:49 +02:00
commit_1innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
compare.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
compare.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
compound.result MDEV-16708: Unsupported commands for prepared statements 2021-06-17 19:30:24 +02:00
compound.test Merge 10.5 into 10.6 2022-01-04 09:26:38 +02:00
compress.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
compress.test Disable valgrind for test in main that takes > 200 seconds 2022-10-04 11:59:01 +03:00
concurrent_innodb_safelog.result MDEV-21921 Make transaction_isolation and transaction_read_only into system variables 2023-04-12 11:04:29 +10:00
concurrent_innodb_safelog.test
concurrent_innodb_unsafelog.result MDEV-35124 Set innodb_snapshot_isolation=ON by default 2024-10-11 15:02:31 +03:00
concurrent_innodb_unsafelog.test MDEV-35124 Set innodb_snapshot_isolation=ON by default 2024-10-11 15:02:31 +03:00
connect-abstract.cnf MDEV-20162: fix connect-abstract test case 2021-06-11 14:30:42 +10:00
connect-abstract.result MDEV-20162: fix connect-abstract test case 2021-06-11 14:30:42 +10:00
connect-abstract.test MDEV-20162: fix connect-abstract test case 2021-06-11 14:30:42 +10:00
connect-no-db.result MDEV-34226 On startup: UBSAN: applying zero offset to null pointer in my_copy_fix_mb from strings/ctype-mb.c and other locations 2024-05-27 13:19:13 +04:00
connect-no-db.test MDEV-34226 On startup: UBSAN: applying zero offset to null pointer in my_copy_fix_mb from strings/ctype-mb.c and other locations 2024-05-27 13:19:13 +04:00
connect.cnf Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
connect.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
connect.test MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
connect2.cnf Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
connect2.result MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
connect2.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
connect_debug.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
connect_debug.test mysqltest: support MARIADB_OPT_RESTRICTED_AUTH 2024-05-21 19:40:03 +02:00
consistent_snapshot.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
consistent_snapshot.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
constraints.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
constraints.test MDEV-33768: Memory leak found in the test main.constraints run with --ps-protocol against a server built with the option -DWITH_PROTECT_STATEMENT_MEMROOT 2024-03-28 14:53:58 +07:00
contributors.result Update sponsors 2024-08-12 09:32:30 +01:00
contributors.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
costs.result MDEV-30328 Assertion `avg_io_cost != 0.0 || index_cost.io + row_cost.io == 0' failed in Cost_estimate::total_cost() 2023-02-10 12:58:50 +02:00
costs.test MDEV-30328 Assertion `avg_io_cost != 0.0 || index_cost.io + row_cost.io == 0' failed in Cost_estimate::total_cost() 2023-02-10 12:58:50 +02:00
count_distinct.result Merge 10.6 into 10.11 2025-01-08 12:51:26 +02:00
count_distinct.test
count_distinct2-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
count_distinct2.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
count_distinct2.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
count_distinct3.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
count_distinct3.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
crash_commit_before-master.opt MDEV-29983 Deprecate innodb_file_per_table 2023-01-11 17:55:56 +02:00
crash_commit_before.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
crash_commit_before.test MDEV-16944 Fix file sharing issues on Windows in mysqltest 2024-04-17 16:52:37 +02:00
create-big.result Fix the test: changing charset should be dome when we can not skip the test. 2025-05-09 07:36:15 +02:00
create-big.test Fixed main.create-big failure 2018-12-10 22:59:46 +04:00
create-uca.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
create-uca.test MDEV-8334: Rename utf8 to utf8mb3 2021-05-19 06:48:36 +02:00
create.result MDEV-36104 Server crashes when reading information_schema.COLUMNS after creating a table with virtual columns using the GIS data type 2025-04-18 09:41:23 +02:00
create.test MDEV-36104 Server crashes when reading information_schema.COLUMNS after creating a table with virtual columns using the GIS data type 2025-04-18 09:41:23 +02:00
create_delayed.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_delayed.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_drop_binlog.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
create_drop_binlog.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_drop_db.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_drop_db.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_drop_event.result
create_drop_event.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
create_drop_function.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
create_drop_function.test Merge 10.2 into 10.3 2020-07-14 22:59:19 +03:00
create_drop_index.result MDEV-35021 Behavior for RTREE indexes changed, assertion fails 2024-11-05 14:00:51 -08:00
create_drop_index.test MDEV-35021 Behavior for RTREE indexes changed, assertion fails 2024-11-05 14:00:51 -08:00
create_drop_procedure.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_drop_procedure.test
create_drop_role.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
create_drop_role.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
create_drop_server.result MDEV-27892 Improve an error message for foreign server exists 2022-05-10 13:08:33 +09:00
create_drop_server.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_drop_trigger.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_drop_trigger.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_drop_udf.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_drop_udf.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_drop_user.result
create_drop_user.test Use mysql.user.authentication_string for password 2018-10-31 16:06:16 +01:00
create_drop_view.result Make error messages from DROP TABLE and DROP TABLE IF EXISTS consistent 2020-06-14 19:39:42 +03:00
create_drop_view.test MDEV-11412 Ensure that table is truly dropped when using DROP TABLE 2020-06-14 19:39:42 +03:00
create_not_windows.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
create_not_windows.test Revert MDEV-25292 Atomic CREATE OR REPLACE TABLE 2022-10-27 23:13:41 +02:00
create_or_replace-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_or_replace.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
create_or_replace.test MDEV-19749 - MDL scalability regression after backup locks 2025-06-25 21:42:51 +03:00
create_or_replace2.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
create_or_replace2.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
create_or_replace_permission.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
create_or_replace_permission.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_replace_tmp.result Merge 10.2 into 10.3 2018-07-23 18:56:52 +03:00
create_replace_tmp.test Merge 10.2 into 10.3 2018-07-23 18:56:52 +03:00
create_select.result MDEV-35308 NO_KEY_OPTIONS SQL mode has no effect on engine key options 2024-11-05 14:00:52 -08:00
create_select.test
create_user.result MDEV-24193 UBSAN: sql/sql_acl.cc:9985:29: runtime error: member access within null pointer of type 'struct TABLE' , ASAN: use-after-poison in handle_grant_table 2024-10-01 18:29:11 +02:00
create_user.test MDEV-24193 UBSAN: sql/sql_acl.cc:9985:29: runtime error: member access within null pointer of type 'struct TABLE' , ASAN: use-after-poison in handle_grant_table 2024-10-01 18:29:11 +02:00
create_utf8.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
create_utf8.test MDEV-27691: make working view-protocol 2022-09-23 19:47:30 +07:00
create_w_max_indexes_64.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
create_w_max_indexes_64.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_w_max_indexes_128.result Merge branch '10.6' into 10.6.14 2023-06-07 19:59:52 +02:00
create_w_max_indexes_128.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
create_windows.result MDEV-28746 Wrong error code ER_BAD_DB_ERROR for long filenames 2022-07-07 15:14:14 +02:00
create_windows.test MDEV-28746 Wrong error code ER_BAD_DB_ERROR for long filenames 2022-07-07 15:14:14 +02:00
cset_narrowing.result MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
cset_narrowing.test Merge branch '10.11' into 11.1 2024-07-08 22:40:16 +02:00
cte_cycle.result Merge 10.4 into 10.5 2022-04-21 15:33:50 +03:00
cte_cycle.test MDEV-20632: Recursive CTE cycle detection using CYCLE clause (nonstandard) 2020-03-10 07:20:49 +01:00
cte_grant.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
cte_grant.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
cte_nonrecursive.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
cte_nonrecursive.test MDEV-27944: View-protocol fails if database was changed 2024-09-25 11:44:28 +07:00
cte_nonrecursive_not_embedded.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
cte_nonrecursive_not_embedded.test Merge branch '10.2' into 10.3 2020-12-23 19:28:02 +01:00
cte_recursive.result Fixed costs in JOIN_TAB::estimate_scan_time() and HEAP 2025-02-10 15:59:28 +02:00
cte_recursive.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
cte_recursive_not_embedded.result Merge 10.2 into 10.3 2018-07-23 18:56:52 +03:00
cte_recursive_not_embedded.test Merge 10.2 into 10.3 2018-07-23 18:56:52 +03:00
ctype_ascii.result
ctype_ascii.test
ctype_big5.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_big5.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
ctype_binary.result Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
ctype_binary.test Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
ctype_collate.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
ctype_collate.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_collate_column.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_collate_column.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_collate_context.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_collate_context.test Merge remote-tracking branch 'origin/11.4' into 11.5 2024-07-10 12:17:09 +04:00
ctype_collate_database.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_collate_database.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_collate_implicit.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_collate_implicit.test
ctype_collate_implicit_def.opt
ctype_collate_implicit_def.result
ctype_collate_implicit_def.test
ctype_collate_implicit_utf32.result
ctype_collate_implicit_utf32.test
ctype_collate_table.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_collate_table.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_cp850.result
ctype_cp850.test
ctype_cp866.result
ctype_cp866.test
ctype_cp932.result Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
ctype_cp932.test Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
ctype_cp932_binlog_row.result
ctype_cp932_binlog_row.test
ctype_cp932_binlog_stm.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_cp932_binlog_stm.test
ctype_cp1250_ch.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_cp1250_ch.test
ctype_cp1251.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
ctype_cp1251.test
ctype_create.result MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
ctype_create.test
ctype_dec8.result
ctype_dec8.test
ctype_errors.result
ctype_errors.test
ctype_eucjpms.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_eucjpms.test Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
ctype_euckr.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_euckr.test Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_filename.result Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
ctype_filename.test Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
ctype_filename_innodb.result MDEV-35393 ASAN unknown-crash in Field_varstring::reset when inserting NULL value to a table with filename charset 2024-11-14 16:06:04 +04:00
ctype_filename_innodb.test MDEV-35393 ASAN unknown-crash in Field_varstring::reset when inserting NULL value to a table with filename charset 2024-11-14 16:06:04 +04:00
ctype_filesystem-master.opt
ctype_filesystem.result
ctype_filesystem.test
ctype_gb2312.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_gb2312.test Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
ctype_gbk.result fix incorrect merge 15700f54c2 2025-04-18 09:41:24 +02:00
ctype_gbk.test Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
ctype_gbk_binlog.result
ctype_gbk_binlog.test
ctype_gbk_export_import.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
ctype_gbk_export_import.test
ctype_hebrew.result
ctype_hebrew.test
ctype_latin1.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
ctype_latin1.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
ctype_latin1_de.result
ctype_latin1_de.test
ctype_latin2.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
ctype_latin2.test
ctype_latin2_ch.result MDEV-27277 Add a warning when max_sort_length is reached 2024-10-22 21:42:53 +07:00
ctype_latin2_ch.test
ctype_ldml-master.opt
ctype_ldml.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
ctype_ldml.test Merge branch '10.6' into 10.11 2024-07-04 11:52:07 +02:00
ctype_like_range.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_like_range.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_many.result MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
ctype_many.test MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
ctype_mb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_mb.test
ctype_nopad_8bit.result Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
ctype_nopad_8bit.test
ctype_partitions.result
ctype_partitions.test
ctype_recoding.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_recoding.test MDEV-27944: View-protocol fails if database was changed 2024-09-25 11:44:28 +07:00
ctype_sjis.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_sjis.test Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
ctype_sjis_innodb.result MDEV-30111 InnoDB: Failing assertion: update->n_fields == 0 in row_ins_sec_index_entry_by_modify 2025-01-24 11:36:47 +04:00
ctype_sjis_innodb.test MDEV-30111 InnoDB: Failing assertion: update->n_fields == 0 in row_ins_sec_index_entry_by_modify 2025-01-24 11:36:47 +04:00
ctype_swe7.result Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
ctype_swe7.test
ctype_tis620.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_tis620.test
ctype_uca.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_uca.test MDEV-34417 Wrong result set with utf8mb4_danish_ci and BNLH join 2024-06-20 11:30:02 +04:00
ctype_uca_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_uca_innodb.test
ctype_uca_partitions.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_uca_partitions.test
ctype_ucs.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
ctype_ucs.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
ctype_ucs2_def-master.opt
ctype_ucs2_def.result
ctype_ucs2_def.test
ctype_ucs2_general_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_ucs2_general_ci_casefold.test Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_ucs2_general_ci_ws.result
ctype_ucs2_general_ci_ws.test
ctype_ucs2_general_mysql500_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_ucs2_general_mysql500_ci_casefold.test Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_ucs2_general_mysql500_ci_ws.result
ctype_ucs2_general_mysql500_ci_ws.test
ctype_ucs2_query_cache-master.opt
ctype_ucs2_query_cache.result
ctype_ucs2_query_cache.test
ctype_ucs2_turkish_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_ucs2_turkish_ci_casefold.test Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_ucs2_uca.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_ucs2_uca.test
ctype_ucs2_unicode_520_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_ucs2_unicode_520_ci_casefold.test Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_ujis.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_ujis.test Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
ctype_ujis_ucs2.result
ctype_ujis_ucs2.test
ctype_upgrade.result ALTER TABLE and replication should convert old row_end timestamps to new timestamp range 2024-05-27 12:39:03 +02:00
ctype_upgrade.test
ctype_utf8-master.opt
ctype_utf8.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_utf8.test Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_utf8_def_upgrade.opt MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8_def_upgrade.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
ctype_utf8_def_upgrade.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8_uca.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8_uca.test
ctype_utf8mb3_bin.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb3_bin.test MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
ctype_utf8mb3_geeral1400_as_ci.result MDEV-31340 Remove MY_COLLATION_HANDLER::strcasecmp() 2024-04-18 15:22:10 +04:00
ctype_utf8mb3_geeral1400_as_ci.test MDEV-31340 Remove MY_COLLATION_HANDLER::strcasecmp() 2024-04-18 15:22:10 +04:00
ctype_utf8mb3_general_ci.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb3_general_ci.test MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
ctype_utf8mb3_general_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_utf8mb3_general_ci_casefold.test
ctype_utf8mb3_general_ci_ws.result
ctype_utf8mb3_general_ci_ws.test
ctype_utf8mb3_general_mysql500_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_utf8mb3_general_mysql500_ci_casefold.test
ctype_utf8mb3_general_mysql500_ci_ws.result
ctype_utf8mb3_general_mysql500_ci_ws.test
ctype_utf8mb3_innodb.result MDEV-30111 InnoDB: Failing assertion: update->n_fields == 0 in row_ins_sec_index_entry_by_modify 2025-01-24 11:36:47 +04:00
ctype_utf8mb3_innodb.test MDEV-30111 InnoDB: Failing assertion: update->n_fields == 0 in row_ins_sec_index_entry_by_modify 2025-01-24 11:36:47 +04:00
ctype_utf8mb3_turkish_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_utf8mb3_turkish_ci_casefold.test
ctype_utf8mb3_uca1400_ai_ci.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb3_uca1400_ai_ci.test MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
ctype_utf8mb3_unicode_520_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_utf8mb3_unicode_520_ci_casefold.test
ctype_utf8mb4-master.opt
ctype_utf8mb4.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
ctype_utf8mb4.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
ctype_utf8mb4_0900.result MDEV-36213 Doubled memory usage (11.4.4 <-> 11.4.5) 2025-04-17 10:01:53 +04:00
ctype_utf8mb4_0900.test MDEV-36213 Doubled memory usage (11.4.4 <-> 11.4.5) 2025-04-17 10:01:53 +04:00
ctype_utf8mb4_0900_ai_ci_casefold.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
ctype_utf8mb4_0900_ai_ci_casefold.test MDEV-20912 Add support for utf8mb4_0900_* collations in MariaDB Server 2024-12-28 10:23:49 +02:00
ctype_utf8mb4_0900_mem.opt MDEV-36213 Doubled memory usage (11.4.4 <-> 11.4.5) 2025-04-17 10:01:53 +04:00
ctype_utf8mb4_0900_mem.result MDEV-36213 Doubled memory usage (11.4.4 <-> 11.4.5) 2025-04-17 10:01:53 +04:00
ctype_utf8mb4_0900_mem.test MDEV-36213 Doubled memory usage (11.4.4 <-> 11.4.5) 2025-04-17 10:01:53 +04:00
ctype_utf8mb4_bin.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb4_bin.test MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
ctype_utf8mb4_general1400_as_ci_casefold.result MDEV-31340 Remove MY_COLLATION_HANDLER::strcasecmp() 2024-04-18 15:22:10 +04:00
ctype_utf8mb4_general1400_as_ci_casefold.test MDEV-31340 Remove MY_COLLATION_HANDLER::strcasecmp() 2024-04-18 15:22:10 +04:00
ctype_utf8mb4_general1400_as_ci_ws.result MDEV-31340 Remove MY_COLLATION_HANDLER::strcasecmp() 2024-04-18 15:22:10 +04:00
ctype_utf8mb4_general1400_as_ci_ws.test MDEV-31340 Remove MY_COLLATION_HANDLER::strcasecmp() 2024-04-18 15:22:10 +04:00
ctype_utf8mb4_general_ci.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb4_general_ci.test MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
ctype_utf8mb4_general_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_utf8mb4_general_ci_casefold.test
ctype_utf8mb4_general_ci_ws.result
ctype_utf8mb4_general_ci_ws.test
ctype_utf8mb4_heap.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
ctype_utf8mb4_heap.test
ctype_utf8mb4_innodb-master.opt
ctype_utf8mb4_innodb.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
ctype_utf8mb4_innodb.test Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
ctype_utf8mb4_myisam.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
ctype_utf8mb4_myisam.test
ctype_utf8mb4_turkish_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_utf8mb4_turkish_ci_casefold.test
ctype_utf8mb4_uca.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb4_uca.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb4_uca1400_ai_ci.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb4_uca1400_ai_ci.test MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
ctype_utf8mb4_uca1400_ai_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_utf8mb4_uca1400_ai_ci_casefold.test
ctype_utf8mb4_uca_allkeys400.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb4_uca_allkeys400.test
ctype_utf8mb4_uca_allkeys520.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb4_uca_allkeys520.test
ctype_utf8mb4_uca_allkeys1400.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf8mb4_uca_allkeys1400.test
ctype_utf8mb4_unicode_520_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_utf8mb4_unicode_520_ci_casefold.test
ctype_utf8mb4_unicode_ci_casefold.result Extra tests for MDEV-30716 Wrong casefolding in xxx_unicode_520_ci for U+0700..U+07FF 2024-03-07 17:38:36 +04:00
ctype_utf8mb4_unicode_ci_casefold.test
ctype_utf8mb4_unicode_ci_def.opt
ctype_utf8mb4_unicode_ci_def.result Merge remote-tracking branch 'origin/11.4' into 11.5 2024-07-08 12:25:04 +04:00
ctype_utf8mb4_unicode_ci_def.test MDEV-34288 SET NAMES DEFAULT crashes mariadbd --collation-server=utf8mb4_unicode_ci 2024-06-04 12:38:43 +04:00
ctype_utf16.result Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
ctype_utf16.test Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
ctype_utf16_def-master.opt
ctype_utf16_def.result
ctype_utf16_def.test
ctype_utf16_uca.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf16_uca.test
ctype_utf16le.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
ctype_utf16le.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
ctype_utf32.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_utf32.test Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_utf32_def.opt
ctype_utf32_def.result
ctype_utf32_def.test
ctype_utf32_innodb.result
ctype_utf32_innodb.test
ctype_utf32_not_embedded.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ctype_utf32_not_embedded.test MDEV-29968 Functions in default values in tables with some character sets break SHOW CREATE (and mysqldump) 2025-01-17 15:39:55 +04:00
ctype_utf32_uca.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ctype_utf32_uca.test
custom_aggregate_functions.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
custom_aggregate_functions.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
custom_aggregates_i_s.result Change cost for REF to take into account cost for 1 extra key read_next 2023-02-10 12:58:50 +02:00
custom_aggregates_i_s.test
date_formats.result Merge remote-tracking branch 'origin/11.2' into 11.4 2024-07-09 21:45:37 +04:00
date_formats.test Merge remote-tracking branch 'origin/11.2' into 11.4 2024-07-09 21:45:37 +04:00
datetime_456.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
datetime_456.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ddl_i18n_koi8r.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ddl_i18n_koi8r.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
ddl_i18n_utf8.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
ddl_i18n_utf8.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
deadlock_ftwrl.result MDEV-20946: Hard FTWRL deadlock under user level locks 2021-03-10 18:08:29 +02:00
deadlock_ftwrl.test MDEV-20946: Hard FTWRL deadlock under user level locks 2021-03-10 18:08:29 +02:00
deadlock_innodb.result MDEV-26642/MDEV-26643/MDEV-32898 Implement innodb_snapshot_isolation 2024-03-20 09:48:03 +02:00
deadlock_innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
debug_sync.result Implement DEBUG_SYNC multiple signal firing capability 2023-02-03 16:27:16 +02:00
debug_sync.test Merge branch '10.5' into 10.6 2023-08-01 15:08:52 +02:00
default.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
default.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
default_debug.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
default_debug.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
default_innodb.result Merge branch '10.2' into 10.3 2022-04-21 10:05:50 +02:00
default_innodb.test Merge branch '10.2' into 10.3 2022-04-21 10:05:50 +02:00
default_session.result Merge branch '10.2' into 10.3 2020-01-24 14:16:20 +01:00
default_session.test Merge branch '10.2' into 10.3 2020-01-24 14:16:20 +01:00
default_storage_engine.result Fixed default_storage_engine.test 2020-04-23 11:08:52 +03:00
default_storage_engine.test Fixup d1c3342d07 for --embedded 2020-04-24 17:12:11 +03:00
delayed.result Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
delayed.test MariaDB 11.1.3 release 2023-11-14 18:28:37 +01:00
delayed_blob.opt Merge 10.2 into 10.3 2021-10-13 11:38:21 +03:00
delayed_blob.result Merge 10.2 into 10.3 2021-10-13 11:38:21 +03:00
delayed_blob.test Merge 10.2 into 10.3 2021-10-13 11:38:21 +03:00
delete.result MDEV-30469 Feature rebase 2025-02-05 11:31:57 -05:00
delete.test MDEV-30469 Support ORDER BY and LIMIT for multi-table DELETE, index hints for single-table DELETE 2025-02-05 10:12:27 -05:00
delete_innodb.result Merge branch '11.7' into 11.8 2025-02-11 20:29:43 +01:00
delete_innodb.test Merge branch '10.11 into 11.4 2025-01-30 12:01:11 +01:00
delete_multi_order_by.result MDEV-35848, MDEV-35568 Reintroduce delete_while_scanning for multi_delete 2025-02-05 10:12:30 -05:00
delete_multi_order_by.test MDEV-35848, MDEV-35568 Reintroduce delete_while_scanning for multi_delete 2025-02-05 10:12:30 -05:00
delete_returning.result Merge branch '11.2' into 11.4 2024-10-30 15:11:17 +01:00
delete_returning.test
delete_returning_grant.result
delete_returning_grant.test
delete_single_to_multi.result MDEV-35848, MDEV-35568 Reintroduce delete_while_scanning for multi_delete 2025-02-05 10:12:30 -05:00
delete_single_to_multi.test Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
delete_use_source.result MDEV-33988 DELETE single table to support table aliases 2024-07-17 09:50:53 +10:00
delete_use_source.test MDEV-33988 DELETE single table to support table aliases 2024-07-17 09:50:53 +10:00
delete_use_source_engines.result MDEV-30469 Support ORDER BY and LIMIT for multi-table DELETE, index hints for single-table DELETE 2025-02-05 10:12:27 -05:00
delete_use_source_engines.test
delimiter_case_mdev_10728.sql Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
delimiter_command_case_sensitivity.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
delimiter_command_case_sensitivity.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
deprecated_features.result Added syntax and implementation for BACKUP STAGE's 2018-12-09 22:12:27 +02:00
deprecated_features.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
derived.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
derived.test Merge branch '11.6' into 11.7 2024-11-10 19:22:21 +01:00
derived_cond_pushdown.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
derived_cond_pushdown.test Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
derived_cond_pushdown_innodb.result MDEV-33010 Crash when pushing condition with CHARSET()/COERCIBILITY() into derived table 2024-07-16 16:20:17 +07:00
derived_cond_pushdown_innodb.test MDEV-33010 Crash when pushing condition with CHARSET()/COERCIBILITY() into derived table 2024-07-16 16:20:17 +07:00
derived_opt.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
derived_opt.test Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
derived_split_innodb.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
derived_split_innodb.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
derived_view.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
derived_view.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
desc_index_min_max.result
desc_index_min_max.test fix sporadic test failures caused by InnoDB #record estimation 2025-02-06 16:47:52 +01:00
desc_index_range.result Merge branch '10.11' into 11.1 2024-07-08 22:40:16 +02:00
desc_index_range.test Merge branch '10.6' into 10.11 2024-07-04 11:52:07 +02:00
dirty_close.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
dirty_close.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
disabled.def Merge branch '10.11' into 11.0 2023-12-19 15:53:18 +01:00
distinct.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
distinct.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
distinct_notembedded.result MDEV-30660 Aggregation functions fail to leverage uniqueness property 2024-02-10 14:54:03 +07:00
distinct_notembedded.test MDEV-31933: Make working view-protocol + ps-protocol (running two protocols together) 2024-07-02 10:11:33 +07:00
drop.result Merge 10.5 into 10.6 2024-05-30 14:27:07 +03:00
drop.test MDEV-34205: ASAN stack buffer overflow in strxnmov() in frm_file_exists 2024-05-23 22:08:27 +02:00
drop_bad_db_type.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
drop_bad_db_type.test
drop_combinations.inc Fixed error messages from DROP VIEW to align with DROP TABLE 2020-06-14 19:39:42 +03:00
drop_combinations.result Merge commit '10.4' into 10.5 2021-01-06 10:53:00 +01:00
drop_combinations.test Fix drop_combinations for embedded 2020-06-15 17:30:26 +03:00
drop_table_force.result MDEV-14425 Improve the redo log for concurrency 2022-01-21 16:03:47 +02:00
drop_table_force.test
dyncol.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
dyncol.test Merge remote-tracking branch 'origin/11.4' into 11.5 2024-07-08 12:25:04 +04:00
empty_server_name-8224.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
empty_server_name-8224.test MDEV-16944 Fix file sharing issues on Windows in mysqltest 2024-04-17 16:52:37 +02:00
empty_string_literal.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
empty_string_literal.test MDEV-33460 use the correct sql_mode and fix for --view 2024-03-27 16:14:55 +01:00
empty_table.result MDEV-30333 Wrong result with not_null_range_scan and LEFT JOIN with empty table 2023-02-15 13:56:33 +02:00
empty_table.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
empty_user_table.result
empty_user_table.test MDEV-17658 change the structure of mysql.user table 2018-12-12 00:31:44 +01:00
endspace.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
endspace.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
enforce_storage_engine.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
enforce_storage_engine.test MDEV-8578: Wrong error code/message with enforce_storage_engine and 2024-10-18 16:42:52 +05:30
enforce_storage_engine_opt.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
enforce_storage_engine_opt.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
enforce_storage_engine_opt.test MDEV-8578: Wrong error code/message with enforce_storage_engine and 2024-10-18 16:42:52 +05:30
engine_error_in_alter-8453.result Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
engine_error_in_alter-8453.test Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
error_simulation-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
error_simulation.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
error_simulation.test MDEV-35469 Heap tables are calling mallocs to often 2025-01-05 16:40:11 +02:00
errors.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
errors.test MDEV-35828: Assertion fails in alloc_root() when memory causes it to call itself 2025-01-15 12:34:25 +02:00
except.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
except.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
except_all.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
except_all.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
execution_constants.result
execution_constants.test fix test failures with ASAN 2023-12-21 10:21:05 +02:00
explain.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
explain.test Merge 10.11 into 11.2 2024-10-03 13:24:43 +03:00
explain_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
explain_innodb.test Merge branch '10.4' into 10.4.29 release 2023-05-11 09:07:45 +02:00
explain_json.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
explain_json.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
explain_json_format_partitions.result MDEV-18478 ANALYZE for statement should show selectivity of ICP, part#2 2024-04-23 22:55:22 +03:00
explain_json_format_partitions.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
explain_json_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
explain_json_innodb.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
explain_non_select.result Merge branch '11.0' into 11.1 2023-08-09 08:25:14 +02:00
explain_non_select.test MDEV-31224 Crash with EXPLAIN EXTENDED for multi-table update of system table 2023-05-09 21:20:10 -07:00
explain_slowquerylog-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
explain_slowquerylog.result Merge branch 'github/10.2' into 10.3 2018-05-22 11:47:09 +02:00
explain_slowquerylog.test Merge branch 'github/10.2' into 10.3 2018-05-22 11:47:09 +02:00
ext_key_noPK_6794.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ext_key_noPK_6794.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
failed_auth_3909.result MDEV-19650: Privilege bug on MariaDB 10.4 2020-05-07 10:54:56 +02:00
failed_auth_3909.test MDEV-19650: Privilege bug on MariaDB 10.4 2020-05-07 10:54:56 +02:00
failed_auth_unixsocket.result MDEV-18151 Skipped error returning for GRANT/SET PASSWORD 2024-10-09 15:48:14 +02:00
failed_auth_unixsocket.test MDEV-18151 Skipped error returning for GRANT/SET PASSWORD 2024-10-09 15:48:14 +02:00
fast_prefix_index_fetch_innodb.result
fast_prefix_index_fetch_innodb.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
features,ps.rdiff MDEV-26142: Fix failures of the tests main.features and sys_vars.stored_program_cache_func when they are run in PS mode 2021-07-15 16:27:31 +07:00
features.result open frm for DROP TABLE 2024-11-05 14:00:48 -08:00
features.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
fetch_first.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
fetch_first.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
file_contents.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
file_contents.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
filesort_bad_i_s-7585.result
filesort_bad_i_s-7585.test
filesort_debug.result MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
filesort_debug.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
filesort_pack.result
filesort_pack.test MDEV-27307 main.ctype_utf8mb4_uca_allkeys tests fail with Valgrind/MSAN 2021-12-21 17:39:23 +04:00
fix_priv_tables.result MDEV-30056 Impossible to export column grants 2022-12-02 16:19:13 +01:00
fix_priv_tables.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
flush-innodb-notembedded.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
flush-innodb-notembedded.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
flush-innodb.result MDEV-29983 Deprecate innodb_file_per_table 2023-01-11 17:55:56 +02:00
flush-innodb.test MDEV-29983 Deprecate innodb_file_per_table 2023-01-11 17:55:56 +02:00
flush.result MDEV-25906: SIGSEGV in flush_tables_with_read_lock on FTWRL or FTFE | SIGSEGV in ha_maria::extra 2021-07-02 16:44:00 +02:00
flush.test MDEV-27691: make working view-protocol 2022-09-27 13:18:28 +07:00
flush2-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
flush2.result Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
flush2.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
flush_and_binlog.result MDEV-23843 Assertions in Diagnostics_area upon table operations under FTWRL 2021-03-02 15:18:18 +02:00
flush_and_binlog.test MDEV-23843 Assertions in Diagnostics_area upon table operations under FTWRL 2021-03-02 15:18:18 +02:00
flush_block_commit.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
flush_block_commit.test Combine GLOBAL and COMMIT namespaces into BACKUP namespace. 2018-12-09 22:12:26 +02:00
flush_block_commit_notembedded.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
flush_block_commit_notembedded.test MDEV-23974 Tests fail due to [Warning] InnoDB: Trying to delete tablespace 2022-03-23 16:42:43 +02:00
flush_corruption.result Moved merge tests from main to suite/merge 2023-05-03 21:44:57 +03:00
flush_corruption.test MDEV-31795: main.flush_corruption times out with view-protocol 2023-09-15 18:04:22 +07:00
flush_logs_not_windows.result MDEV-17710 "unknown error" with FLUSH LOGS if log directory is not writeable 2019-05-07 18:40:36 +02:00
flush_logs_not_windows.test Disable flush_logs_not_windows.test of run as root (causes failure) 2023-06-08 17:15:16 +03:00
flush_notembedded.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
flush_notembedded.test MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
flush_read_lock.result MDEV-35417 InnoDB crashes under ... AND DISABLE CHECKPOINT 2025-01-13 19:57:12 +01:00
flush_read_lock.test MDEV-35417 InnoDB crashes under ... AND DISABLE CHECKPOINT 2025-01-13 19:57:12 +01:00
flush_read_lock_kill.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
flush_read_lock_kill.test Test cases require debug_sync enabled 2021-07-19 17:05:51 +03:00
flush_ssl.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
flush_ssl.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
flush_table.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
flush_table.test
foreign_key.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
foreign_key.test MDEV-31531 Remove my_casedn_str() and my_caseup_str() 2024-02-28 22:20:29 +04:00
frm-debug.result Merge 10.4 into 10.5 2020-05-31 10:28:59 +03:00
frm-debug.test A cleanup for MDEV-20042 Implement EXTRA2_FIELD_DATA_TYPE_INFO in FRM 2019-10-02 18:10:58 +04:00
frm_bad_row_type-7333.result
frm_bad_row_type-7333.test
fulltext.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
fulltext.test Merge branch '10.11' into 11.0 2023-11-08 17:09:44 +01:00
fulltext2.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext2.test Merge branch 'bb-10.5-all-builders' into bb-10.6-all-builders 2022-09-27 13:17:59 +07:00
fulltext3.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
fulltext3.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
fulltext_cache.result
fulltext_cache.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_charsets.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_charsets.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_derived_4257.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_derived_4257.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_derived_4316.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_derived_4316.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_distinct.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_distinct.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_left_join.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
fulltext_left_join.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
fulltext_multi.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_multi.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_order_by.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
fulltext_order_by.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_update.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_update.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_var.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
fulltext_var.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
func_analyse.result Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
func_analyse.test Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
func_bit.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_bit.test MDEV-20305 Data loss on DOUBLE and DECIMAL conversion to INT 2020-06-06 11:33:11 +04:00
func_compress.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_compress.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_concat.result MDEV-21589 AddressSanitizer: memcpy-param-overlap in Static_binary_string::q_append or String::append 2024-12-13 11:09:29 +01:00
func_concat.test MDEV-21589 AddressSanitizer: memcpy-param-overlap in Static_binary_string::q_append or String::append 2024-12-13 11:09:29 +01:00
func_crypt.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_crypt.test MDEV-27964: Test ENCRYPT() only in main.func_crypt 2022-03-01 09:22:52 +02:00
func_date_add.result MDEV-30931 UBSAN: negation of -X cannot be represented in type 'long long int'; cast to an unsigned type to negate this value to itself in get_interval_value on SELECT 2024-05-27 13:19:13 +04:00
func_date_add.test MDEV-30931 UBSAN: negation of -X cannot be represented in type 'long long int'; cast to an unsigned type to negate this value to itself in get_interval_value on SELECT 2024-05-27 13:19:13 +04:00
func_debug.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_debug.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_default.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_default.test Merge branch 'bb-10.9-all-builders' into bb-10.10-all-builders 2022-09-28 09:40:17 +07:00
func_des_encrypt.result compile-time deprecation reminders 2023-09-30 14:43:12 +02:00
func_des_encrypt.test Merge 11.2 into 11.4 2024-10-03 14:32:14 +03:00
func_digest.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_digest.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
func_encrypt-master.opt
func_encrypt.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_encrypt.test MDEV-27691: make working view-protocol 2022-09-28 13:53:08 +07:00
func_encrypt_nossl.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
func_encrypt_nossl.test fix func_encrypt_nossl test to work as it was supposed to 2022-07-28 00:53:21 +02:00
func_encrypt_ucs2.result compile-time deprecation reminders 2023-09-30 14:43:12 +02:00
func_encrypt_ucs2.test Merge 10.9 into 10.10 2022-12-14 08:57:39 +02:00
func_equal.result MDEV-21029 Incorrect result for expression with the <=> operator and IS NULL 2024-11-25 10:37:02 +04:00
func_equal.test MDEV-21029 Incorrect result for expression with the <=> operator and IS NULL 2024-11-25 10:37:02 +04:00
func_extract.result Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
func_extract.test MDEV-35489 Assertion `!ldate->neg' or unexpected result upon extracting unit from invalid value 2024-11-25 16:13:16 +04:00
func_format.result MDEV-36334 test main.func_format fails on i386 on exabyte/petabyte mismatch 2025-04-18 09:41:24 +02:00
func_format.test MDEV-31736: format_bytes implementation 2024-11-26 13:10:01 +04:00
func_gconcat.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
func_gconcat.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
func_group.result MDEV-15751 CURRENT_TIMESTAMP should return a TIMESTAMP [WITH TIME ZONE?] 2024-10-19 22:48:23 +02:00
func_group.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
func_group_innodb.result Merge branch '10.11' into 11.1 2024-07-08 22:40:16 +02:00
func_group_innodb.test Merge 10.11 into 11.2 2024-10-03 13:24:43 +03:00
func_hybrid_type.result Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
func_hybrid_type.test Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
func_if.result Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
func_if.test Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
func_in.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_in.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_int.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
func_int.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
func_isnull.result Merge 10.2 into 10.3 2018-08-28 12:22:56 +03:00
func_isnull.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
func_json.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
func_json.test Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
func_json_notembedded.result MDEV-32726: Fix failing test fir freebsd for json 2024-04-08 20:20:44 +05:30
func_json_notembedded.test MDEV-32726: Fix failing test fir freebsd for json 2024-04-08 20:20:44 +05:30
func_kdf,old.rdiff MDEV-31474 KDF() function 2023-09-30 14:43:12 +02:00
func_kdf.combinations MDEV-31474 KDF() function 2023-09-30 14:43:12 +02:00
func_kdf.result MDEV-33659 Fix crash in kdf() without parameters 2024-04-11 15:57:58 +01:00
func_kdf.test MDEV-33659 Fix crash in kdf() without parameters 2024-04-11 15:57:58 +01:00
func_like.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
func_like.test Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
func_math.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
func_math.test Merge 10.6 into 10.11 2025-01-08 12:51:26 +02:00
func_misc.result Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
func_misc.test Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
func_op.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
func_op.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
func_regexp.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_regexp.test MDEV-21058 CREATE TABLE with generated column and RLIKE results in sigabrt 2024-04-29 11:08:07 +04:00
func_regexp_pcre.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
func_regexp_pcre.test Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
func_regexp_pcre_debug.result Merge 10.4 into 10.5 2020-01-20 16:48:56 +02:00
func_regexp_pcre_debug.test Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
func_replace.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_replace.test MDEV-17226 Column Data in Truncated on UNION to the length of the first value if using REPLACE 2023-12-11 10:42:37 +04:00
func_rollback.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
func_rollback.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
func_sapdb.result Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
func_sapdb.test Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
func_set.result MDEV-29184 Assertion `0' in Item_row::illegal_method_call, Type_handler_row::Item_update_null_value, Item::update_null_value 2024-11-01 12:40:43 +04:00
func_set.test MDEV-29184 Assertion `0' in Item_row::illegal_method_call, Type_handler_row::Item_update_null_value, Item::update_null_value 2024-11-01 12:40:43 +04:00
func_sformat.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_sformat.test main.func_sformat: fixes for fmt 10.2.1 2024-04-22 00:14:03 +02:00
func_str.result MDEV-34911 Sargable substr(col, 1, n) = str 2024-12-20 13:25:28 +11:00
func_str.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
func_system.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
func_system.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
func_test.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
func_test.test
func_time.result Merge branch '11.6' into 11.7 2024-11-10 19:22:21 +01:00
func_time.test MDEV-15751 CURRENT_TIMESTAMP should return a TIMESTAMP [WITH TIME ZONE?] 2024-10-19 22:48:23 +02:00
func_time_32.result MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
func_time_32.test MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
func_time_64.result MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
func_time_64.test MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
func_time_hires.result MDEV-15751 CURRENT_TIMESTAMP should return a TIMESTAMP [WITH TIME ZONE?] 2024-10-19 22:48:23 +02:00
func_time_hires.test Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
func_time_round.result MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
func_time_round.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
func_timestamp.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
func_timestamp.test
func_weight_string.result MDEV-35041 Simple comparison causes "Illegal mix of collations" even with default server settings 2024-10-28 16:30:49 +04:00
func_weight_string.test Merge branch '10.5' into 10.6 2023-08-01 15:08:52 +02:00
function_defaults.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
function_defaults.test MDEV-33790 Incorrect DEFAULT expression evaluated in UPDATE 2024-04-25 14:11:28 +02:00
function_defaults_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
function_defaults_innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
function_defaults_notembedded.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
function_defaults_notembedded.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
gcc296.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
gcc296.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
get_diagnostics.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
get_diagnostics.test Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
gis-alter_table.result rename tests 2023-08-15 10:16:11 +02:00
gis-alter_table.test rename tests 2023-08-15 10:16:11 +02:00
gis-debug.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
gis-debug.test MDEV-27691: make working view-protocol 2022-09-26 10:25:41 +07:00
gis-json.result Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
gis-json.test Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
gis-loaddata.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
gis-loaddata.test
gis-precise.result MDEV-35117 Improve error message on unexpected geometries for st_distance_sphere 2025-02-06 13:17:47 +11:00
gis-precise.test MDEV-35117 Improve error message on unexpected geometries for st_distance_sphere 2025-02-06 13:17:47 +11:00
gis-rt-precise.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
gis-rt-precise.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
gis-rtree.result reject invalid spatial key declarations in the parser 2024-11-05 14:00:47 -08:00
gis-rtree.test reject invalid spatial key declarations in the parser 2024-11-05 14:00:47 -08:00
gis.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
gis.test Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
gis_notembedded.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
gis_notembedded.test Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
grant.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
grant.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
grant.test Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
grant2.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
grant2.result Merge 11.0-selectivity into 11.0 2023-02-15 12:03:12 +03:00
grant2.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
grant3-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
grant3.result Merge 10.10 into 10.11 2022-12-14 09:18:30 +02:00
grant3.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
grant4.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
grant4.result Merge branch '10.5' into 10.6 2023-11-08 15:57:05 +01:00
grant4.test Merge branch 'bb-10.5-all-builders' into bb-10.6-all-builders 2022-09-27 13:17:59 +07:00
grant5.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
grant5.test Merge branch '10.11' into 11.2 2024-10-29 16:42:46 +01:00
grant_4332.result MDEV-24312 master_host has 60 character limit, increase to 255 bytes 2021-04-20 16:36:56 +02:00
grant_4332.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
grant_binlog_replay.result MDEV-29668 SUPER should not allow actions that have fine-grained dedicated privileges 2023-02-06 14:31:48 +01:00
grant_binlog_replay.test MDEV-29668 SUPER should not allow actions that have fine-grained dedicated privileges 2023-02-06 14:31:48 +01:00
grant_cache_no_prot.result
grant_cache_no_prot.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
grant_cache_ps_prot.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
grant_cache_ps_prot.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
grant_explain_non_select.result
grant_explain_non_select.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
grant_kill.result MDEV-29668 SUPER should not allow actions that have fine-grained dedicated privileges 2023-02-06 14:31:48 +01:00
grant_kill.test MDEV-29668 SUPER should not allow actions that have fine-grained dedicated privileges 2023-02-06 14:31:48 +01:00
grant_lowercase.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
grant_lowercase.result MDEV-24312 master_host has 60 character limit, increase to 255 bytes 2021-04-20 16:36:56 +02:00
grant_lowercase.test MDEV-24312 master_host has 60 character limit, increase to 255 bytes 2021-04-20 16:36:56 +02:00
grant_lowercase_fs.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
grant_lowercase_fs.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
grant_master_admin.result MDEV-21743 Split up SUPER privilege to smaller privileges 2020-03-10 23:49:47 +04:00
grant_master_admin.test
grant_plugin.result Correct cursor protocol tests main.{loaddata,grant_plugin} & innodb_fts.fulltext 2024-11-21 21:43:44 +11:00
grant_plugin.test Correct cursor protocol tests main.{loaddata,grant_plugin} & innodb_fts.fulltext 2024-11-21 21:43:44 +11:00
grant_read_only.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
grant_read_only.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
grant_repair.result Improve error reporting in Aria 2022-06-07 20:43:11 +03:00
grant_repair.test fix the test for windows 2020-04-28 15:12:02 +02:00
grant_server.result MDEV-29668 SUPER should not allow actions that have fine-grained dedicated privileges 2023-02-06 14:31:48 +01:00
grant_server.test MDEV-29668 SUPER should not allow actions that have fine-grained dedicated privileges 2023-02-06 14:31:48 +01:00
grant_slave_admin.result
grant_slave_admin.test MDEV-29668 SUPER should not allow actions that have fine-grained dedicated privileges 2023-02-06 14:31:48 +01:00
grant_slave_monitor.result MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
grant_slave_monitor.test MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
grant_utf8_cli.result MDEV-26713 Set activeCodePage=UTF8 for windows programs 2021-12-15 19:13:57 +01:00
grant_utf8_cli.test MDEV-26713 Set activeCodePage=UTF8 for windows programs 2021-12-15 19:13:57 +01:00
greedy_optimizer.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
greedy_optimizer.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
group_by.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
group_by.test Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
group_by_cardinality.result MDEV-30877: Output cardinality for derived table ignores GROUP BY 2025-02-10 22:06:49 +02:00
group_by_cardinality.test MDEV-30877: Output cardinality for derived table ignores GROUP BY 2025-02-10 22:06:49 +02:00
group_by_innodb.result MDEV-15253: Default optimizer setting changes for MariaDB 10.4 2018-12-09 09:22:00 +05:30
group_by_innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
group_by_null.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
group_by_null.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
group_min_max.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
group_min_max.test Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
group_min_max_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
group_min_max_innodb.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
group_min_max_notembedded.result MDEV-31380 post-fix: fix group_min_max.test with embedded and view-protocol 2023-06-08 11:14:50 +03:00
group_min_max_notembedded.test MDEV-31933: Make working view-protocol + ps-protocol (running two protocols together) 2024-07-02 10:11:33 +07:00
handler_read_last.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
handler_read_last.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
handlersocket.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
handlersocket.result MDEV-19275 Provide SQL service to plugins. 2021-10-19 17:35:06 +02:00
handlersocket.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
having.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
having.test Merge branch '11.5' into 11.6 2024-08-21 15:13:47 +02:00
having_cond_pushdown.result Merge 10.11 -> 11.2 2024-09-09 13:50:38 +03:00
having_cond_pushdown.test Merge 10.11 -> 11.2 2024-09-09 13:50:38 +03:00
help.result Merge 10.3 into 10.4 2022-06-09 11:53:46 +03:00
help.test Merge 10.3 into 10.4 2022-06-09 11:53:46 +03:00
host_cache_size_functionality.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
host_cache_size_functionality.test MDEV-16944 Fix file sharing issues on Windows in mysqltest 2024-04-17 16:52:37 +02:00
huge_frm-6224.result Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
huge_frm-6224.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
identifier.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
identifier.test MDEV-31340 Remove MY_COLLATION_HANDLER::strcasecmp() 2024-04-18 15:22:10 +04:00
identifier_partition.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
identifier_partition.test MDEV-31340 Remove MY_COLLATION_HANDLER::strcasecmp() 2024-04-18 15:22:10 +04:00
ignored_index.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ignored_index.test Added test cases for preceding test 2023-02-03 00:00:35 +03:00
ignored_index_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
ignored_index_innodb.test MDEV-33655 Remove alter_algorithm 2024-05-27 12:39:03 +02:00
implicit_char_to_num_conversion.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
implicit_char_to_num_conversion.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
implicit_commit-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
implicit_commit.result MDEV-20945: BACKUP UNLOCK + FTWRL assertion failure 2020-10-22 00:18:33 +03:00
implicit_commit.test Merge branch 'bb-10.3-all-builders' into bb-10.4-all-builders 2022-09-23 19:47:13 +07:00
in_datetime_241.result
in_datetime_241.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
in_subq_cond_pushdown.result Merge branch '10.11' into 11.1 2024-08-03 09:32:42 +02:00
in_subq_cond_pushdown.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
index_intersect.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
index_intersect.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
index_intersect_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
index_intersect_innodb.test MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
index_merge_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
index_merge_innodb.test Merge 10.5 into 10.6 2022-10-06 09:22:39 +03:00
index_merge_myisam.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
index_merge_myisam.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
information_schema-big.result MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
information_schema-big.test MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
information_schema-big_embedded.result MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
information_schema-big_embedded.test MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
information_schema.result MDEV-35693: Improve SHOW REPLICA STATUS column sizes 2025-01-31 20:56:41 -07:00
information_schema.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
information_schema2.result set the function result field name for error reporting 2025-04-18 09:41:24 +02:00
information_schema2.test MDEV-36596 Assertion failure in TABLE_SHARE::init_from_sql_statement_string upon returning wrong type from function 2025-04-18 09:41:24 +02:00
information_schema_all_engines-master.opt MDEV-24142: Remove INFORMATION_SCHEMA.INNODB_MUTEXES 2020-12-03 15:28:53 +02:00
information_schema_all_engines.result MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
information_schema_all_engines.test Merge branch 'bb-10.11-vp-MDEV-27691' into 10.11 2022-10-17 19:12:21 +02:00
information_schema_chmod.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
information_schema_chmod.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
information_schema_columns.result Merge branch '10.2' into 10.3 2022-05-03 10:59:54 +02:00
information_schema_columns.test Merge branch '10.2' into 10.3 2022-05-03 10:59:54 +02:00
information_schema_db.result MDEV-32218 PASSWORD_EXPIRATION_TIME column 2024-05-27 16:43:58 +02:00
information_schema_db.test MDEV-32218 PASSWORD_EXPIRATION_TIME column 2024-05-27 16:43:58 +02:00
information_schema_inno.result Merge branch '10.2' into 10.3 2022-01-29 15:41:05 +01:00
information_schema_inno.test Merge branch '10.2' into 10.3 2022-01-29 15:41:05 +01:00
information_schema_linux.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
information_schema_linux.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
information_schema_parameters.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
information_schema_parameters.test Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
information_schema_part.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
information_schema_part.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
information_schema_prepare.result Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
information_schema_prepare.test Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
information_schema_routines.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
information_schema_routines.test Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
information_schema_stats.result MDEV-34571 Add page accessed and pages read from disk to table_stats 2024-07-12 11:28:18 +03:00
information_schema_stats.test MDEV-32218 PASSWORD_EXPIRATION_TIME column 2024-05-27 16:43:58 +02:00
information_schema_tables.result Merge branch '10.2' into 10.3 2022-05-03 10:59:54 +02:00
information_schema_tables.test A cleanup for MDEV-25243 ASAN heap-use-after-free in Item_func_sp::execute_impl upon concurrent view DDL and I_S query with view and function 2022-06-28 13:34:58 +04:00
information_schema_temp_table.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
information_schema_temp_table.test MDEV-31618: Server crashes in process_i_s_table_temporary_tables/get_all_tables after alter in rename query 2023-08-11 19:36:22 +02:00
init_connect-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
init_connect.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
init_connect.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
init_connection_query_cache-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
init_connection_query_cache.result Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
init_connection_query_cache.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
init_file.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
init_file.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
init_file.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
init_file_longline_3816.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
init_file_longline_3816.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
init_file_longline_3816.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
init_file_set_password-7656.result MDEV-17658 change the structure of mysql.user table 2018-12-12 00:31:44 +01:00
init_file_set_password-7656.test MDEV-16944 Fix file sharing issues on Windows in mysqltest 2024-04-17 16:52:37 +02:00
innodb_bug878769.result
innodb_bug878769.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
innodb_ext_key,covering,on.rdiff mtr: remove innodb combinations 2024-05-05 21:37:08 +02:00
innodb_ext_key,off.rdiff Merge branch '10.11' into 11.0 2024-05-12 12:18:28 +02:00
innodb_ext_key,on,unoptimized.rdiff mtr: remove innodb combinations 2024-05-05 21:37:08 +02:00
innodb_ext_key.combinations Merge 10.2 into 10.3 2020-09-03 09:26:54 +03:00
innodb_ext_key.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
innodb_ext_key.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
innodb_group.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
innodb_group.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
innodb_icp.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
innodb_icp.test MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
innodb_icp_debug.result MDEV-22761: innodb row_search_idx_cond_check handle CHECK_ABORTED_BY_USER 2020-10-14 15:14:46 +03:00
innodb_icp_debug.test MDEV-22761: innodb row_search_idx_cond_check handle CHECK_ABORTED_BY_USER 2020-10-14 15:14:46 +03:00
innodb_ignore_builtin-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
innodb_ignore_builtin.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
innodb_ignore_builtin.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
innodb_load_xa.opt
innodb_load_xa.result
innodb_load_xa.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
innodb_mrr_cpk.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
innodb_mrr_cpk.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
innodb_mysql_lock.result MDEV-515 Reduce InnoDB undo logging for insert into empty table 2021-01-25 18:41:27 +02:00
innodb_mysql_lock.test MDEV-24035 Failing assertion: UT_LIST_GET_LEN(lock.trx_locks) == 0 causing disruption and replication failure 2024-12-12 18:02:00 +02:00
innodb_mysql_lock2.result MDEV-21921 Make transaction_isolation and transaction_read_only into system variables 2023-04-12 11:04:29 +10:00
innodb_mysql_lock2.test MDEV-21921 Make transaction_isolation and transaction_read_only into system variables 2023-04-12 11:04:29 +10:00
innodb_mysql_sync.result MDEV-33655 Remove alter_algorithm 2024-05-27 12:39:03 +02:00
innodb_mysql_sync.test MDEV-33655 Remove alter_algorithm 2024-05-27 12:39:03 +02:00
innodb_utf8.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
innodb_utf8.test MDEV-8334: Rename utf8 to utf8mb3 2021-05-19 06:48:36 +02:00
insert.result Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
insert.test Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
insert_debug-master.opt Merge branch '10.2' into 10.3 2020-01-21 09:11:14 +01:00
insert_debug.result Merge branch '10.2' into 10.3 2020-01-21 09:11:14 +01:00
insert_debug.test Merge branch '10.2' into 10.3 2020-01-21 09:11:14 +01:00
insert_innodb.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
insert_innodb.test MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
insert_notembedded.result
insert_notembedded.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
insert_returning.result Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
insert_returning.test Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
insert_returning_datatypes.result
insert_returning_datatypes.test
insert_select.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
insert_select.test Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
insert_update.result Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
insert_update.test after merge: update the test for 10.10 2023-05-04 23:28:45 +02:00
insert_update_autoinc-7150.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
insert_update_autoinc-7150.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
intersect.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
intersect.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
intersect_all.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
intersect_all.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
invisible_binlog.result MDEV-35308 NO_KEY_OPTIONS SQL mode has no effect on engine key options 2024-11-05 14:00:52 -08:00
invisible_binlog.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
invisible_field.result Merge branch '11.6' into 11.7 2024-11-10 19:22:21 +01:00
invisible_field.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
invisible_field_debug.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
invisible_field_debug.test Vanilla cleanups and refactorings 2021-10-26 17:07:46 +02:00
invisible_field_grant_completely.result Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
invisible_field_grant_completely.test
invisible_field_grant_system.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
invisible_field_grant_system.test
invisible_partition.result MDEV-15167 Server crashes in in bitmap_bits_set upon REPAIR PARTITION... 2018-04-19 22:30:32 +05:30
invisible_partition.test Buildbot fixes 2018-04-20 16:52:51 +05:30
ipv4_and_ipv6.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ipv4_and_ipv6.result MDEV-20076: SHOW GRANTS does not quote role names properly 2020-02-05 17:22:26 +01:00
ipv4_and_ipv6.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ipv4_as_ipv6-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ipv4_as_ipv6.result MDEV-20076: SHOW GRANTS does not quote role names properly 2020-02-05 17:22:26 +01:00
ipv4_as_ipv6.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ipv6-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ipv6.result MDEV-20076: SHOW GRANTS does not quote role names properly 2020-02-05 17:22:26 +01:00
ipv6.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
item_types.result MDEV-34833 Assertion failure in Item_float::do_build_clone (Item_static_float_func) 2024-08-29 09:32:29 +02:00
item_types.test MDEV-34833 Assertion failure in Item_float::do_build_clone (Item_static_float_func) 2024-08-29 09:32:29 +02:00
join.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
join.test Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
join_cache.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
join_cache.test Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
join_cache_cardinality.result MDEV-30812: Improve output cardinality estimates for hash join 2023-05-03 21:44:57 +03:00
join_cache_cardinality.test MDEV-30812: Improve output cardinality estimates for hash join 2023-04-28 16:24:08 +03:00
join_cache_debug.result MDEV-18478 ANALYZE for statement should show selectivity of ICP, part#2 2024-04-23 22:55:22 +03:00
join_cache_debug.test MDEV-32351: Significant slowdown with outer joins: fix embedded. 2023-10-28 12:47:55 +03:00
join_cache_notasan.result Fixed wrong test cases (embedded and ASAN) 2023-05-05 13:15:14 +03:00
join_cache_notasan.test Merge branch '10.4' into 10.5 2023-08-10 21:17:44 +02:00
join_crash.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
join_crash.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
join_nested.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
join_nested.test Merge 10.11 into 11.4 2025-03-28 13:55:21 +02:00
join_nested_jcl6.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
join_nested_jcl6.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
join_optimizer.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
join_optimizer.test MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
join_outer.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
join_outer.test Merge 10.11 into 11.2 2024-10-03 13:24:43 +03:00
join_outer_innodb.result Merge '11.4' into 11.6 2024-10-03 15:59:20 +10:00
join_outer_innodb.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
join_outer_jcl6.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
join_outer_jcl6.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
json_debug_nonembedded_noasan.result Merge branch '10.11' into 11.1 2024-08-03 09:32:42 +02:00
json_debug_nonembedded_noasan.test Merge branch '10.11' into 11.1 2024-08-03 09:32:42 +02:00
json_equals.result Merge branch '10.6' into 10.11 2024-07-04 11:52:07 +02:00
json_equals.test Merge branch '10.6' into 10.11 2024-07-04 11:52:07 +02:00
json_normalize.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
json_normalize.test MDEV-16375 Function to normalize a json value 2021-07-21 16:32:11 +03:00
key.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
key.test Fixed some issues with FORCE INDEX 2023-02-02 23:12:46 +03:00
key_cache-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
key_cache.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
key_cache.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
key_diff.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
key_diff.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
key_primary.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
key_primary.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
keyread.result Fixed some assert crashes related to keyread. 2020-04-19 17:33:51 +03:00
keyread.test Fixed some assert crashes related to keyread. 2020-04-19 17:33:51 +03:00
keywords.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
keywords.test Adding MTR tests to cover how keywords of different kinds behave in various contexts 2022-04-07 06:13:22 +04:00
kill-2-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
kill-2.result Merge 10.10 into 10.11 2023-04-14 13:08:28 +03:00
kill-2.test Merge remote-tracking branch '10.4' into 10.5 2023-03-31 21:32:41 +02:00
kill.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
kill.test Merge 10.5 into 10.6 2022-12-13 16:58:58 +02:00
kill_debug.result Merge branch '10.5' into 10.6 2025-01-29 11:17:38 +01:00
kill_debug.test Merge branch '10.5' into 10.6 2025-01-29 11:17:38 +01:00
kill_processlist-6619.result Revert "Fixed random failure in main.kill_processlist-6619" 2024-03-27 16:14:56 +01:00
kill_processlist-6619.test Merge 10.5 into 10.6 2024-04-17 14:14:58 +03:00
kill_query-6728.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
kill_query-6728.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
large_pages.opt MDEV-29445: Reimplement SET GLOBAL innodb_buffer_pool_size 2025-03-26 17:05:44 +02:00
large_pages.result MDEV-29445: Reimplement SET GLOBAL innodb_buffer_pool_size 2025-03-26 17:05:44 +02:00
large_pages.test MDEV-29445: Reimplement SET GLOBAL innodb_buffer_pool_size 2025-03-26 17:05:44 +02:00
last_value.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
last_value.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
leaks.result MDEV-32476 LeakSanitizer errors in get_quick_select or Assertion ... 2023-10-19 16:17:01 +03:00
leaks.test MDEV-32476 LeakSanitizer errors in get_quick_select or Assertion ... 2023-10-19 16:17:01 +03:00
limit.result Merge branch '10.2' into 10.3 2018-06-30 16:39:20 +02:00
limit.test Merge branch '10.2' into 10.3 2018-06-30 16:39:20 +02:00
limit_rows_examined.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
limit_rows_examined.test Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
loaddata.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
loaddata.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
loaddata_innodb.result MDEV-35354 fix the test for --embedded 2024-11-10 19:22:39 +01:00
loaddata_innodb.test MDEV-35354 fix the test for --embedded 2024-11-10 19:22:39 +01:00
loadxml.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
loadxml.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
locale.opt Merge 10.2 into 10.3 2020-01-31 11:37:12 +02:00
locale.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
locale.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
lock.result MDEV-19198 - DBUG assert in CREATE IF NOT EXIST under LOCK TABLES WRITE 2021-05-19 22:54:14 +02:00
lock.test
lock_kill.result MDEV-17749 Kill during LOCK TABLE ; ALTER TABLE causes assert 2021-05-26 14:35:23 +03:00
lock_kill.test main.lock_kill fails in embedded 2021-07-02 16:44:00 +02:00
lock_multi.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
lock_multi.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
lock_multi_bug38499.result MDEV-16329 [5/5] ALTER ONLINE TABLE 2023-08-15 10:16:11 +02:00
lock_multi_bug38499.test MDEV-16329 [5/5] ALTER ONLINE TABLE 2023-08-15 10:16:11 +02:00
lock_multi_bug38691.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
lock_multi_bug38691.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
lock_sync-master.opt MDEV-30544 Deprecate innodb_defragment and related parameters 2023-02-21 13:33:47 +02:00
lock_sync.result fix sporadic failures of main.lock_sync 2024-05-04 11:00:52 +02:00
lock_sync.test Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
lock_tables_lost_commit-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lock_tables_lost_commit.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lock_tables_lost_commit.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lock_user.result Merge branch '10.4' into 10.5 2021-02-23 13:06:22 +01:00
lock_user.test MDEV-24098: 10.5 followup 2020-11-14 12:28:28 +01:00
lock_view.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
lock_view.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
locked_temporary-5955.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
locked_temporary-5955.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
locking_clause.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
locking_clause.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
log_crash.result MDEV-33373 part 2: Unexpected ER_FILE_NOT_FOUND upon reading from logging table after crash recovery 2024-09-30 13:50:51 +02:00
log_crash.test MDEV-33373 part 2: Unexpected ER_FILE_NOT_FOUND upon reading from logging table after crash recovery 2024-09-30 13:50:51 +02:00
log_errchk.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
log_errchk.test MDEV-16944 Fix file sharing issues on Windows in mysqltest 2024-04-17 16:52:37 +02:00
log_slow.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
log_slow.test Merge branch '10.6' into 10.11 2025-01-10 13:14:42 +01:00
log_slow_always_query_time.result MDEV-33144 Implement the Percona variable slow_query_log_always_write_time 2024-11-01 08:58:37 +01:00
log_slow_always_query_time.test MDEV-31005: Make working cursor-protocol 2024-12-19 15:33:39 +00:00
log_slow_debug.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
log_slow_debug.test Merge branch '10.5' into 10.6 2023-12-17 11:20:43 +01:00
log_slow_filter.opt MDEV-34491 Setting log_slow_admin="" at startup should be converted to log_slow_admin=ALL 2024-07-02 11:26:13 +03:00
log_slow_filter.result MDEV-34491 Setting log_slow_admin="" at startup should be converted to log_slow_admin=ALL 2024-07-02 11:26:13 +03:00
log_slow_filter.test MDEV-34491 Setting log_slow_admin="" at startup should be converted to log_slow_admin=ALL 2024-07-02 11:26:13 +03:00
log_slow_innodb.result Merge remote-tracking branch 'origin/11.4' into 11.5 2024-07-10 12:17:09 +04:00
log_slow_innodb.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
log_state-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
log_state.result Added missing DROP PROCEDURE to mtr test main.log_state 2025-02-07 16:57:05 +02:00
log_state.test Added missing DROP PROCEDURE to mtr test main.log_state 2025-02-07 16:57:05 +02:00
log_state_bug33693-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
log_state_bug33693.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
log_state_bug33693.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
log_tables-big-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
log_tables-big.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
log_tables-big.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
log_tables-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
log_tables.result MDEV-25829 Change default Unicode collation to uca1400_ai_ci 2024-05-24 15:50:05 +04:00
log_tables.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
log_tables_debug.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
log_tables_debug.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
log_tables_upgrade.result MDEV-24486 Rename the view sys.table_privileges to sys.privileges_by_table_by_level 2023-12-08 19:29:02 +03:00
log_tables_upgrade.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
long_host.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
long_host.test Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
long_tmpdir-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
long_tmpdir-master.sh Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
long_tmpdir.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
long_tmpdir.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
long_unique.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
long_unique.test Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
long_unique_big.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
long_unique_big.test MDEV-27160 Out of memory in main.long_unique 2021-12-03 09:56:30 +02:00
long_unique_bugs.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
long_unique_bugs.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
long_unique_bugs_no_sp_protocol.result MDEV-32837 long unique does not work like unique key when using replace 2024-01-24 17:19:54 +04:00
long_unique_bugs_no_sp_protocol.test MDEV-32837 long unique does not work like unique key when using replace 2024-01-24 17:19:54 +04:00
long_unique_bugs_replication.result MDEV-32093 long uniques break old->new replication 2023-09-06 22:38:41 +02:00
long_unique_bugs_replication.test MDEV-32093 long uniques break old->new replication 2023-09-06 22:38:41 +02:00
long_unique_debug.result enforce no trailing \n in Diagnostic_area messages 2025-01-07 16:31:39 +01:00
long_unique_debug.test MDEV-371 Unique Index for long columns 2019-02-22 12:33:08 +01:00
long_unique_delayed.result Improve update handler (long unique keys on blobs) 2020-03-24 21:00:02 +02:00
long_unique_delayed.test Improve update handler (long unique keys on blobs) 2020-03-24 21:00:02 +02:00
long_unique_innodb.opt MDEV-20131 Assertion `!pk->has_virtual()' failed 2021-10-20 16:49:28 +03:00
long_unique_innodb.result cleanup: key algorithm vs key flags 2024-11-05 14:00:47 -08:00
long_unique_innodb.test cleanup: key algorithm vs key flags 2024-11-05 14:00:47 -08:00
long_unique_update.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
long_unique_update.test MDEV-371 Unique Index for long columns 2019-02-22 12:33:08 +01:00
long_unique_using_hash.result MDEV-7317: Make an index ignorable to the optimizer 2021-03-04 22:50:00 +05:30
long_unique_using_hash.test MDEV-371 Unique Index for long columns 2019-02-22 12:33:08 +01:00
lotofstack.result fix test failures with ASAN 2023-12-21 10:21:05 +02:00
lotofstack.test fix test failures with ASAN 2023-12-21 10:21:05 +02:00
lowercase_fs_off.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
lowercase_fs_off.test MDEV-32973 SHOW TABLES LIKE shows temporary tables with non-matching names 2024-04-23 12:31:41 +02:00
lowercase_fs_on.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_fs_on.test MDEV-16944 Fix file sharing issues on Windows in mysqltest 2024-04-17 16:52:37 +02:00
lowercase_mixed_tmpdir-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_mixed_tmpdir-master.sh Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_mixed_tmpdir.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_mixed_tmpdir.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_mixed_tmpdir_innodb-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_mixed_tmpdir_innodb-master.sh Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_mixed_tmpdir_innodb.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_mixed_tmpdir_innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_table-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_table.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
lowercase_table.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
lowercase_table2.opt MDEV-30765 SHOW TABLES not working properly with lower_case_table_names=2 2023-05-11 12:06:08 +07:00
lowercase_table2.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
lowercase_table2.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
lowercase_table4-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_table4.result MDEV-35805 Update main.lowercase_table4 for new default collation 2025-01-13 13:39:44 -05:00
lowercase_table4.test Merge 10.2 into 10.3 2019-05-29 11:32:46 +03:00
lowercase_table5.result MDEV-34571 Add page accessed and pages read from disk to table_stats 2024-07-12 11:28:18 +03:00
lowercase_table5.test Backporting bugs fixes fixed by MDEV-31340 from 11.5 2024-05-21 14:58:01 +04:00
lowercase_table_grant-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_table_grant.result MDEV-29167 new db-level SHOW CREATE ROUTINE privilege 2023-10-17 21:52:39 +02:00
lowercase_table_grant.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_table_qcache-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_table_qcache.result Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
lowercase_table_qcache.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
lowercase_utf8-master.opt MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
lowercase_utf8.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_utf8.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_view-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
lowercase_view.result MDEV-32086 (part 2) Server crash when inserting from derived table containing insert target table 2025-04-25 15:10:36 +02:00
lowercase_view.test MDEV-32086 (part 2) Server crash when inserting from derived table containing insert target table 2025-04-25 15:10:36 +02:00
mariadb-dump-debug.result MDEV-32216 add tests for mariadb-dump --parallel 2024-01-29 11:57:53 +01:00
mariadb-dump-debug.test MDEV-32216 add tests for mariadb-dump --parallel 2024-01-29 11:57:53 +01:00
mariadb-import.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
mariadb-import.test MDEV-34740 mariadb-import: optimize index and constraint creation 2025-01-24 13:15:05 +01:00
mariadb-upgrade-service.result MDEV-36127 Add MTR test for mariadb-upgrade-service on Windows 2025-03-31 18:37:06 +02:00
mariadb-upgrade-service.test MDEV-36127 Add MTR test for mariadb-upgrade-service on Windows 2025-03-31 18:37:06 +02:00
max_password_errors.result MDEV-34311: Alter USER should reset all account limit counters 2024-06-19 23:08:35 +03:00
max_password_errors.test MDEV-34311: Alter USER should reset all account limit counters 2024-06-19 23:08:35 +03:00
max_statement_time.result Merge branch '10.2' into 10.3 2018-06-30 16:39:20 +02:00
max_statement_time.test Merge branch '10.2' into 10.3 2018-06-30 16:39:20 +02:00
mdev-21101.opt MDEV-21101 unexpected wait_timeout with pool-of-threads 2020-07-30 10:17:45 +02:00
mdev-21101.result MDEV-21101 unexpected wait_timeout with pool-of-threads 2020-07-30 10:17:45 +02:00
mdev-21101.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
mdev-25830.result Removed /2 of InnoDB ref_per_key[] estimates 2023-02-10 12:59:36 +02:00
mdev-25830.test Fixed test case for MDEV-25830 2022-01-20 16:46:39 +02:00
mdev-31636.result MDEV-31636 Memory leak in Sys_var_gtid_binlog_state::do_check() 2024-09-25 14:17:21 -04:00
mdev-31636.test MDEV-31636 Memory leak in Sys_var_gtid_binlog_state::do_check() 2024-09-25 14:17:21 -04:00
mdev-34724.result MDEV-30469 Feature rebase 2025-02-05 11:31:57 -05:00
mdev-34724.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
mdev-35046.result MDEV-35046 SIGSEGV in list_delete in optimized builds when using pseudo_slave_mode 2024-11-15 09:48:28 -05:00
mdev-35046.test MDEV-35046 SIGSEGV in list_delete in optimized builds when using pseudo_slave_mode 2024-11-15 09:48:28 -05:00
mdev-35721-ubsan.result MDEV-35721 UBSAN: runtime error: -nan outside range 2025-04-09 09:42:15 +10:00
mdev-35721-ubsan.test MDEV-35721 UBSAN: runtime error: -nan outside range 2025-04-09 09:42:15 +10:00
mdev316.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mdev316.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mdev375.result Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
mdev375.test
mdev6830.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
mdev6830.test Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
mdev13607.result Merge branch '10.3' into 10.4 2019-06-14 22:10:50 +02:00
mdev13607.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
mdev19198.result Merge branch bb-10.2-release into bb-10.3-release 2021-05-04 14:49:31 +03:00
mdev19198.test Merge branch bb-10.2-release into bb-10.3-release 2021-05-04 14:49:31 +03:00
mdev_14586.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mdev_14586.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mdev_19276.result Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
mdev_19276.test Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +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 2020-06-17 02:22:46 +05:30
mdev_22370.test 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 2020-06-17 02:22:46 +05:30
mdl.result MDEV-19749 - MDL scalability regression after backup locks 2025-06-25 21:42:51 +03:00
mdl.test MDEV-19749 - MDL scalability regression after backup locks 2025-06-25 21:42:51 +03:00
mdl_sync-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mdl_sync.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
mdl_sync.test Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
memory_used.result Added status variable "Max_memory_used" to SHOW STATUS 2025-01-05 16:40:11 +02:00
memory_used.test Added status variable "Max_memory_used" to SHOW STATUS 2025-01-05 16:40:11 +02:00
metadata.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
metadata.test Merge branch '10.6' into 10.10 2023-11-08 16:23:30 +01:00
mix2_myisam.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mix2_myisam.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mix2_myisam_ucs2.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mix2_myisam_ucs2.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mrr_derived_crash_4610.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
mrr_derived_crash_4610.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mrr_icp_extra.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mrr_icp_extra.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
multi_statement-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
multi_statement.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
multi_statement.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
multi_update-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
multi_update.result Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
multi_update.test Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
multi_update_big.opt Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
multi_update_big.result Merge 10.2 into 10.3 2020-10-22 08:26:28 +03:00
multi_update_big.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
multi_update_binlog.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
multi_update_binlog.test
multi_update_debug.result Fixed multi_update_debug.test 2020-03-16 17:49:44 +02:00
multi_update_debug.test Fixed multi_update_debug.test 2020-03-16 17:49:44 +02:00
multi_update_innodb.result MDEV-28095 crash in multi-update and implicit grouping 2022-03-17 16:58:48 +01:00
multi_update_innodb.test MDEV-28095 crash in multi-update and implicit grouping 2022-03-17 16:58:48 +01:00
multi_update_tiny_hash-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
multi_update_tiny_hash.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
multi_update_tiny_hash.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
multidelete_engine.combinations MDEV-30469 Support ORDER BY and LIMIT for multi-table DELETE, index hints for single-table DELETE 2025-02-05 10:12:27 -05:00
multidelete_engine.result MDEV-36074 main.multidelete_engine missing result file 2025-02-13 11:58:54 +11:00
multidelete_engine.test MDEV-36074 main.multidelete_engine missing result file 2025-02-13 11:58:54 +11:00
my_getopt_case_insensitive.opt MDEV-27126 my_getopt compares option names case sensitively 2025-02-23 19:09:05 +02:00
my_getopt_case_insensitive.result MDEV-27126 my_getopt compares option names case sensitively 2025-02-23 19:09:05 +02:00
my_getopt_case_insensitive.test MDEV-27126 my_getopt compares option names case sensitively 2025-02-23 19:09:05 +02:00
my_print_defaults.result MDEV-26238: Remove inconsistent behaviour of --default-* options 2022-01-26 18:43:06 +01:00
my_print_defaults.test MDEV-26238: Remove inconsistent behaviour of --default-* options 2022-01-26 18:43:06 +01:00
myisam-big.result MDEV-33813 ERROR 1021 (HY000): Disk full (./org/test1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") 2025-03-06 09:40:55 +02:00
myisam-big.test MDEV-33813 ERROR 1021 (HY000): Disk full (./org/test1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device") 2025-03-06 09:40:55 +02:00
myisam-blob-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam-blob.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam-blob.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam-system.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam-system.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam.result cleanup: key algorithm vs key flags 2024-11-05 14:00:47 -08:00
myisam.test cleanup: key algorithm vs key flags 2024-11-05 14:00:47 -08:00
myisam_crash_before_flush_keys-master.opt mtr: aix - stack-trace is optional 2021-07-22 15:22:47 +10:00
myisam_crash_before_flush_keys.result MDEV-22189: Change error messages inside code to have mariadb instead of 2021-05-24 11:38:13 +05:30
myisam_crash_before_flush_keys.test Merge 10.5 into 10.6 2024-04-18 07:14:56 +03:00
myisam_debug.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
myisam_debug.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
myisam_debug_keys.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
myisam_debug_keys.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
myisam_enable_keys-10506.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam_enable_keys-10506.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam_explain_non_select_all.result MDEV-35848, MDEV-35568 Reintroduce delete_while_scanning for multi_delete 2025-02-05 10:12:30 -05:00
myisam_explain_non_select_all.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
myisam_icp.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
myisam_icp.test Update row and key fetch cost models to take into account data copy costs 2023-02-02 21:43:30 +03:00
myisam_icp_debug.result MDEV-22761: innodb row_search_idx_cond_check handle CHECK_ABORTED_BY_USER 2020-10-14 15:14:46 +03:00
myisam_icp_debug.test MDEV-22761: innodb row_search_idx_cond_check handle CHECK_ABORTED_BY_USER 2020-10-14 15:14:46 +03:00
myisam_icp_notembedded.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam_icp_notembedded.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam_mrr,32bit.rdiff Remove dates from all rdiff files 2025-01-05 16:40:11 +02:00
myisam_mrr.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
myisam_mrr.test make MyISAM and Aria report correct reflength to the server 2024-11-05 14:00:51 -08:00
myisam_optimize.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
myisam_optimize.test Merge branch 'bb-10.7-all-builders' into bb-10.8-all-builders 2022-09-27 18:12:06 +07:00
myisam_recover-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
myisam_recover.result Merge branch '10.5' into 10.6 2023-11-08 15:57:05 +01:00
myisam_recover.test Merge branch '10.5' into 10.6 2023-11-08 15:57:05 +01:00
myisampack.result Fixed access of undefined memory for compressed MyISAM and Aria tables 2020-06-14 19:39:42 +03:00
myisampack.test
mysql-bug41486.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql-bug41486.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql-bug45236.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql-bug45236.test
mysql-interactive.result MDEV-35727 main.mysql-interactive fails in buildbot on debian 2025-03-27 21:25:05 +01:00
mysql-interactive.test MDEV-35727 main.mysql-interactive fails in buildbot on debian 2025-03-27 21:25:05 +01:00
mysql-metadata.result Merge 10.4 into 10.5 2021-10-21 15:26:25 +03:00
mysql-metadata.test MDEV-17832 Protocol: extensions for Pluggable types and JSON, GEOMETRY 2020-03-10 20:43:32 +04:00
mysql.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
mysql.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
mysql57_virtual.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mysql57_virtual.test fix main.mysql57_virtual, main.alter_table, innodb.alter_algorithm 2023-08-15 10:16:13 +02:00
mysql57nopart.result Merge branch '11.6' into 11.7 2024-11-10 19:22:21 +01:00
mysql57nopart.test Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
mysql5613mysql.result
mysql5613mysql.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_binary_mode.result
mysql_binary_mode.test MDEV-27142 disable text mode for Windows stdio by default 2022-07-18 13:18:03 +02:00
mysql_binary_zero_insert.result Merge branch '10.2' into 10.3 2021-11-12 00:08:53 +01:00
mysql_binary_zero_insert.test Merge branch '10.2' into 10.3 2021-11-12 00:08:53 +01:00
mysql_client_test-master.opt Merge branch '10.2' into 10.3 2022-01-29 15:41:05 +01:00
mysql_client_test.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mysql_client_test.test Merge 10.5 into 10.6 2024-04-18 07:14:56 +03:00
mysql_client_test_comp-master.opt Merge branch '10.2' into 10.3 2022-01-29 15:41:05 +01:00
mysql_client_test_comp.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_client_test_comp.test MDEV-16944 Fix file sharing issues on Windows in mysqltest 2024-04-17 16:52:37 +02:00
mysql_client_test_nonblock-master.opt Merge branch '10.2' into 10.3 2022-01-29 15:41:05 +01:00
mysql_client_test_nonblock.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_client_test_nonblock.test MDEV-16944 postfix. Fix a typo 2024-04-18 09:45:41 +02:00
mysql_comments.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mysql_comments.sql Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_comments.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
mysql_connector_net.ps1 MDEV-31608 - Connector/NET fails to connect since 10.10 2023-11-30 13:53:45 +01:00
mysql_connector_net.result MDEV-31608 - Connector/NET fails to connect since 10.10 2023-11-30 13:53:45 +01:00
mysql_connector_net.test MDEV-33374 main.mysql_connector_net fails on new Windows 11 2024-02-02 17:32:32 +01:00
mysql_cp932.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_cp932.test Merge branch 'github/10.2' into 10.3 2018-05-22 11:47:09 +02:00
mysql_delimiter.sql Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_delimiter_19799.sql Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_delimiter_source.sql Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_embedded.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_embedded.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_install_db_win.result MDEV-26715 Fix mysql_install_db_win tests. 2022-11-08 14:58:48 +01:00
mysql_install_db_win.test Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
mysql_install_db_win_admin.result MDEV-32926 mysql_install_db_win fails on buildbot 2024-04-02 20:59:01 +02:00
mysql_install_db_win_admin.test MDEV-32926 mysql_install_db_win fails on buildbot 2024-04-02 20:59:01 +02:00
mysql_install_db_win_utf8.result MDEV-26715 Fix mysql_install_db_win tests. 2022-11-08 14:58:48 +01:00
mysql_install_db_win_utf8.test MDEV-26715 Fix mysql_install_db_win tests. 2022-11-08 14:58:48 +01:00
mysql_json_table_recreate.opt MDEV-18323 Convert MySQL JSON type to MariaDB TEXT in mysql_upgrade 2020-10-28 11:38:14 +02:00
mysql_json_table_recreate.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
mysql_json_table_recreate.test MDEV-32919 Cannot select particular field from IS.tables in case table needs upgrade from MySQL 5.7 2025-01-09 10:00:36 +01:00
mysql_locale_posix.result MDEV-22217 Make OS character sets "utf8" and "utf-8" map to MariaDB character set "utf8mb4" 2025-01-22 11:45:32 +04:00
mysql_locale_posix.test MDEV-22217 Make OS character sets "utf8" and "utf-8" map to MariaDB character set "utf8mb4" 2025-01-22 11:45:32 +04:00
mysql_not_windows.result Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
mysql_not_windows.test MDEV-34090 Client allows to set character set to utf32 and crashes on the next command 2024-11-26 13:57:55 +04:00
mysql_protocols.result Fixed result for mysql_protocols.result 2018-08-20 18:51:14 +03:00
mysql_protocols.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_tzinfo_to_sql_symlink.result fix incorrect merge 15700f54c2 2025-04-18 09:41:24 +02:00
mysql_tzinfo_to_sql_symlink.test MDEV-29347 MariaDB 10.6.8 fails to start when ONLY_FULL_GROUP_BY gets provided 2022-09-26 11:17:53 +02:00
mysql_upgrade-6984.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysql_upgrade-6984.result MDEV-24486 Rename the view sys.table_privileges to sys.privileges_by_table_by_level 2023-12-08 19:29:02 +03:00
mysql_upgrade-6984.test MDEV-29827 collateral cleanup 2023-07-02 12:15:11 +02:00
mysql_upgrade-20228.result MDEV-24486 Rename the view sys.table_privileges to sys.privileges_by_table_by_level 2023-12-08 19:29:02 +03:00
mysql_upgrade-20228.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
mysql_upgrade-28915.opt MDEV-28915: mysql_upgrade fails due to old_mode="", with "Cannot load from 2023-06-26 15:10:30 +05:30
mysql_upgrade-28915.result MDEV-24486 Rename the view sys.table_privileges to sys.privileges_by_table_by_level 2023-12-08 19:29:02 +03:00
mysql_upgrade-28915.test Merge 10.11 into 11.0 2023-06-28 09:19:19 +03:00
mysql_upgrade-34014.opt MDEV-34014 mysql_upgrade failed 2024-06-17 16:38:48 +04:00
mysql_upgrade-34014.result Merge 10.11 into 11.4 2025-03-03 11:07:56 +02:00
mysql_upgrade-34014.test Merge branch '10.11' into 11.1 2024-07-08 22:40:16 +02:00
mysql_upgrade.opt Speed up mysql_upgrade test on Windows by not using SSL 2022-10-06 12:07:01 +02:00
mysql_upgrade.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
mysql_upgrade.test Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
mysql_upgrade_file_leak.result MDEV-31925 Fix for File Leak in mysql_upgrade with --check-if-upgrade-is-needed Option 2023-12-19 19:30:02 +11:00
mysql_upgrade_file_leak.test Merge 10.11 into 11.0 2023-12-20 16:05:20 +02:00
mysql_upgrade_mysql_json.result ALTER TABLE and replication should convert old row_end timestamps to new timestamp range 2024-05-27 12:39:03 +02:00
mysql_upgrade_mysql_json.test Merge 10.11 into 11.0 2023-11-24 11:20:56 +02:00
mysql_upgrade_mysql_json_datatype.result ALTER TABLE and replication should convert old row_end timestamps to new timestamp range 2024-05-27 12:39:03 +02:00
mysql_upgrade_mysql_json_datatype.test
mysql_upgrade_mysql_json_system_tables.result Merge 10.5 into 10.6 2023-11-15 14:10:21 +02:00
mysql_upgrade_mysql_json_system_tables.test Merge 10.11 into 11.0 2023-11-24 11:20:56 +02:00
mysql_upgrade_mysql_json_with_plugin_loaded.result ALTER TABLE and replication should convert old row_end timestamps to new timestamp range 2024-05-27 12:39:03 +02:00
mysql_upgrade_mysql_json_with_plugin_loaded.test
mysql_upgrade_no_innodb.result Fixed some errors & warnings when running mariadb-upgrade on MySQL instance 2023-06-25 16:15:08 +03:00
mysql_upgrade_no_innodb.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
mysql_upgrade_noengine.result Merge 10.11 into 11.0 2023-06-28 09:19:19 +03:00
mysql_upgrade_noengine.test Merge 10.11 into 11.0 2023-06-28 09:19:19 +03:00
mysql_upgrade_ssl.result MDEV-24486 Rename the view sys.table_privileges to sys.privileges_by_table_by_level 2023-12-08 19:29:02 +03:00
mysql_upgrade_ssl.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
mysql_upgrade_to_100502.result MDEV-33554 Upgrade from 11.2 to 11.3 changes root's privileges 2024-03-09 00:40:03 +01:00
mysql_upgrade_to_100502.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
mysql_upgrade_view.result MDEV-24486 Rename the view sys.table_privileges to sys.privileges_by_table_by_level 2023-12-08 19:29:02 +03:00
mysql_upgrade_view.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
mysqladmin.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
mysqladmin.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
mysqlbinlog-innodb.result Merge 10.10 into 10.11 2023-03-29 16:53:37 +03:00
mysqlbinlog-innodb.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
mysqlbinlog-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqlbinlog.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
mysqlbinlog.test Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
mysqlbinlog_raw_mode.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqlbinlog_raw_mode.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqlbinlog_row_big.result mysqltest: fix --sorted_results 2025-01-09 10:00:36 +01:00
mysqlbinlog_row_big.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
mysqlbinlog_row_compressed.result Merge branch '10.5' into 10.6 2024-12-17 11:06:09 +11:00
mysqlbinlog_row_compressed.test MDEV-22964: archive.archive and main.mysqlbinlog_{row,stmt}_compressed) 2024-12-16 10:04:07 +11:00
mysqlbinlog_row_minimal.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqlbinlog_row_minimal.result Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
mysqlbinlog_row_minimal.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mysqlbinlog_stmt_compressed.result Merge branch '10.5' into 10.6 2024-12-17 11:06:09 +11:00
mysqlbinlog_stmt_compressed.test MDEV-22964: archive.archive and main.mysqlbinlog_{row,stmt}_compressed) 2024-12-16 10:04:07 +11:00
mysqlcheck-master.opt Enable mysqlcheck and flush_read_lock tests 2019-05-02 16:11:32 +03:00
mysqlcheck.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
mysqlcheck.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mysqlcheck.test ALTER TABLE and replication should convert old row_end timestamps to new timestamp range 2024-05-27 12:39:03 +02:00
mysqld--defaults-file.result Merge branch '10.2' into 10.3 2020-03-06 23:28:26 +01:00
mysqld--defaults-file.test mtr: aix disable mysqld--defaults-file 2021-07-06 17:59:32 +10:00
mysqld--help,aix.rdiff MDEV-28671 post-merge fixes 2024-05-27 12:39:02 +02:00
mysqld--help,win.rdiff MDEV-32014: Fix mysqld--help,win.rdiff 2024-10-17 15:53:00 -06:00
mysqld--help-aria.result MDEV-28671 post-merge fixes 2024-05-27 12:39:02 +02:00
mysqld--help-aria.test MDEV-34733 main.mysqld--help-aria test failure: feedback plugin: failed to retrieve the MAC address 2025-01-07 16:31:39 +01:00
mysqld--help.result MDEV-19749 - MDL scalability regression after backup locks 2025-06-25 21:42:51 +03:00
mysqld--help.test Two problems with auth_parsec.so 2024-08-12 10:32:03 +02:00
mysqld_help_crash-9183.result
mysqld_help_crash-9183.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqld_option_err.result Merge 10.5 into 10.6 2024-04-17 14:14:58 +03:00
mysqld_option_err.test Merge 10.5 into 10.6 2024-04-17 14:14:58 +03:00
mysqldump-compat-102.opt MDEV-17429 mysqldump uses 10.3 options with pre-10.3 servers and breaks 2019-06-24 02:40:06 -07:00
mysqldump-compat-102.result Merge branch '11.4' into 11.5 2024-08-05 17:50:18 +02:00
mysqldump-compat-102.test Merge branch '10.3' into 10.4 2019-09-06 11:53:10 +02:00
mysqldump-compat.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqldump-compat.result Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
mysqldump-compat.test Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
mysqldump-header.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mysqldump-header.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mysqldump-max-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqldump-max.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
mysqldump-max.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
mysqldump-nl.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
mysqldump-nl.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
mysqldump-no-binlog-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqldump-no-binlog.result also protect the /*!999999 sandbox comment 2024-07-17 21:25:40 +02:00
mysqldump-no-binlog.test
mysqldump-order-by-size.result Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
mysqldump-order-by-size.test MDEV-28074 mysqldump --order-by-size 2022-04-12 11:32:02 +03:00
mysqldump-system,win.rdiff Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
mysqldump-system.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
mysqldump-system.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
mysqldump-timing.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
mysqldump-timing.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
mysqldump-utf8mb4.result Merge branch '10.11 into 11.4 2025-01-30 12:01:11 +01:00
mysqldump-utf8mb4.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
mysqldump-win.opt MDEV-32216 add tests for mariadb-dump --parallel 2024-01-29 11:57:53 +01:00
mysqldump-win.result MDEV-32216 add tests for mariadb-dump --parallel 2024-01-29 11:57:53 +01:00
mysqldump-win.test MDEV-32216 add tests for mariadb-dump --parallel 2024-01-29 11:57:53 +01:00
mysqldump.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
mysqldump.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
mysqldump.test Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
mysqldump_restore.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
mysqldump_restore.test MDEV-17363 - Compressed columns cannot be restored from dump 2019-06-18 07:48:08 +04:00
mysqlhotcopy_myisam.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqlhotcopy_myisam.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqlshow.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqlshow.test MDEV-22933 - remove ---source include/not_threadpool.inc from tests 2020-06-18 23:12:54 +02:00
mysqlslap.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqlslap.result MDEV-34621 Fix division by zero in mariadb-slap when iterations=0 2025-03-21 14:01:52 +04:00
mysqlslap.test MDEV-34621 Fix division by zero in mariadb-slap when iterations=0 2025-03-21 14:01:52 +04:00
mysqltest-break.result Add break statement in mysqltest 2023-09-14 06:58:20 +01:00
mysqltest-break.test Update mysqltest-break.test 2023-09-14 06:58:20 +01:00
mysqltest.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
mysqltest.test MDEV-29344: engines/iuds.insert_time cannot run with PS protocol (syntax error) 2025-03-17 18:11:51 +07:00
mysqltest_256.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqltest_256.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqltest_cont_on_error.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
mysqltest_cont_on_error.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqltest_ps.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
mysqltest_ps.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
mysqltest_tracking_info.result Merge branch '11.6' into 11.7 2024-11-10 19:22:21 +01:00
mysqltest_tracking_info.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
mysqltest_tracking_info_debug.result MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
mysqltest_tracking_info_debug.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
name_const_replacement.result Merge branch '10.11' into 11.1 2024-08-03 09:32:42 +02:00
name_const_replacement.test Merge branch '10.11' into 11.1 2024-08-03 09:32:42 +02:00
name_resolution_cache_debug.result
name_resolution_cache_debug.test MDEV-26831 fallout: fix problems of name resolution cache 2023-03-02 09:24:54 +01:00
named_pipe-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
named_pipe.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
named_pipe.test MDEV-23279 main.named_pipe test timeouts if called twice in a row 2020-08-10 17:33:48 +00:00
natural_sort_key.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
natural_sort_key.test MDEV-26806 Server crash in Charset::charset / Item_func_natural_sort_key::val_str 2021-10-14 12:13:05 +02:00
negation_elimination.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
negation_elimination.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
nested_profiling.result Merge 10.2 into 10.3 2020-07-02 06:17:51 +03:00
nested_profiling.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
no-threads.opt "un-skip" more skipped tests 2023-09-11 11:23:26 +02:00
no-threads.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
no-threads.test "un-skip" more skipped tests 2023-09-11 11:23:26 +02:00
no_binlog.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
no_binlog.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
non_blocking_api.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
non_blocking_api.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
not_embedded_server.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
not_embedded_server.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
not_partition.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
not_partition.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
null.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
null.test Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
null_key.result Merge 10.11 into 11.0 2023-10-19 08:12:16 +03:00
null_key.test Merge 10.11 into 11.2 2024-10-03 13:24:43 +03:00
odbc.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
odbc.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
olap.result Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
olap.test Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
old-mode.opt MDEV-31811 deprecate old_mode values 2023-09-30 14:43:12 +02:00
old-mode.result Merge branch '11.2' into 11.3 2023-12-21 02:14:59 +01:00
old-mode.test Merge branch '11.2' into 11.3 2023-12-21 02:14:59 +01:00
openssl_1.result Merge branch '10.11 into 11.4 2025-01-30 12:01:11 +01:00
openssl_1.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
openssl_6975,tlsv10.result CC 3.1 update 2022-07-29 13:39:12 +02:00
openssl_6975,tlsv12.result CC 3.1 update 2022-07-29 13:39:12 +02:00
openssl_6975.combinations Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
openssl_6975.test MDEV-14101 Provide an option to select TLS protocol version 2019-06-17 12:26:25 +02:00
opt_trace.result Merge branch '11.4' into 11.8 2025-05-21 15:57:16 +02:00
opt_trace.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
opt_trace_default.result MDEV-26929: Make the main testsuite runnable with optimizer trace enabled 2021-10-29 11:44:09 +03:00
opt_trace_default.test MDEV-26929: Make the main testsuite runnable with optimizer trace enabled 2021-10-29 11:44:09 +03:00
opt_trace_index_merge.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
opt_trace_index_merge.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
opt_trace_index_merge_innodb.result MDEV-21510: In Optimizer Trace, print index name in chosen_access_method 2025-04-27 22:16:17 -04:00
opt_trace_index_merge_innodb.test MDEV-31933: Make working view-protocol + ps-protocol (running two protocols together) 2024-07-02 10:11:33 +07:00
opt_trace_security.result MDEV-25080 Fix incorrect view names in printed queries 2023-06-05 20:16:07 +02:00
opt_trace_security.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
opt_trace_selectivity.result MDEV-21510: In Optimizer Trace, print index name in chosen_access_method 2025-04-27 22:16:17 -04:00
opt_trace_selectivity.test Make tests work with --view-protocol 2023-02-03 14:33:18 +03:00
opt_trace_ucs2.result Merge branch '10.11' into 11.0 2023-08-09 07:53:48 +02:00
opt_trace_ucs2.test Merge branch '10.11' into 11.1 2024-07-08 22:40:16 +02:00
opt_tvc.result Merge branch '11.7' into 11.8 2025-02-11 20:29:43 +01:00
opt_tvc.test MDEV-32575 MSAN / Valgrind errors in test_if_cheaper_ordering upon reaching in_predicate_conversion_threshold 2025-01-27 15:59:47 +07:00
optimizer_costs.result Fixed costs in JOIN_TAB::estimate_scan_time() and HEAP 2025-02-10 15:59:28 +02:00
optimizer_costs.test Fixed bug in optimizer_costs.test 2023-02-27 14:41:31 +02:00
optimizer_costs2.opt typos in comments, etc 2023-02-10 12:59:36 +02:00
optimizer_costs2.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
optimizer_costs2.test Added test cases for preceding test 2023-02-03 00:00:35 +03:00
optimizer_crash.result Merge branch '10.11' into 11.0 2023-08-09 07:53:48 +02:00
optimizer_crash.test
order_by-mdev-10122.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
order_by-mdev-10122.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
order_by.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
order_by.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
order_by_innodb.result Merge branch '11.0' into mariadb-11.0.4 2023-11-14 09:21:35 +01:00
order_by_innodb.test Merge branch '11.0' into mariadb-11.0.4 2023-11-14 09:21:35 +01:00
order_by_limit_join.result Merge branch '10.11' into 11.2 2024-10-29 16:42:46 +01:00
order_by_limit_join.test Merge branch '10.11' into 11.2 2024-10-29 16:42:46 +01:00
order_by_optimizer.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
order_by_optimizer.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
order_by_optimizer_innodb.result Merge branch '10.5' into 10.6 2023-11-08 15:57:05 +01:00
order_by_optimizer_innodb.test Merge branch '10.5' into 10.6 2023-11-08 15:57:05 +01:00
order_by_pack_big.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
order_by_pack_big.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
order_by_sortkey.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
order_by_sortkey.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
order_by_zerolength-4285.result
order_by_zerolength-4285.test Merge 10.2 into 10.3 2018-11-06 09:40:39 +02:00
order_fill_sortbuf.result
order_fill_sortbuf.test
outfile.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
outfile.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
outfile_loaddata.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
outfile_loaddata.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
overflow.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
overflow.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
packet.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
packet.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
parser.result Merge branch '11.6' into 11.7 2024-11-10 19:22:21 +01:00
parser.test MDEV-35229 fix the test for --view 2024-11-01 20:52:58 +01:00
parser_bug21114_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
parser_bug21114_innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
parser_not_embedded.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
parser_not_embedded.test Merge branch '10.5' into 10.6 2022-05-10 14:01:23 +02:00
parser_stack.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
parser_stack.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
partition-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
partition.test Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
partition_alter.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_alter.test Merge 10.9 into 10.10 2022-12-14 08:57:39 +02:00
partition_binlog.result Merge 10.6 into 10.11 2024-02-14 16:12:53 +02:00
partition_binlog.test Vanilla cleanups and refactorings 2021-10-26 17:07:46 +02:00
partition_binlog_stmt.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_binlog_stmt.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_blackhole.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_blackhole.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_bug18198.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_bug18198.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_cache.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
partition_cache.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_cache_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_cache_innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_cache_myisam.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_cache_myisam.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_charset.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_charset.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_column.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
partition_column.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_column_prune.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_column_prune.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_csv.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_csv.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
partition_datatype.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_datatype.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_datatype_32.result MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
partition_datatype_32.test MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
partition_datatype_64.result MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
partition_datatype_64.test MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
partition_debug_sync.result
partition_debug_sync.test Merge 10.2 into 10.3 2022-02-28 10:17:39 +02:00
partition_default.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_default.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_disabled-master.opt
partition_disabled.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_disabled.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_error.result consistent error messages, no <angle quoting> 2025-04-18 09:41:23 +02:00
partition_error.test Merge 10.6 into 10.7 2022-06-06 14:56:20 +03:00
partition_example.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
partition_example.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_example.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_exchange-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_exchange.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
partition_exchange.test Merge branch '10.11 into 11.4 2025-01-30 12:01:11 +01:00
partition_explicit_prune.result MDEV-30469 Support ORDER BY and LIMIT for multi-table DELETE, index hints for single-table DELETE 2025-02-05 10:12:27 -05:00
partition_explicit_prune.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
partition_geometries.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_geometries.test MDEV-19177: Geometry support by the partition feature. 2023-12-01 20:40:48 +04:00
partition_grant.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
partition_grant.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_hash.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_hash.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_icp.result MDEV-12404 Index condition pushdown on partitioned tables 2024-04-17 09:07:19 -04:00
partition_icp.test MDEV-12404 Index condition pushdown on partitioned tables 2024-04-17 09:07:19 -04:00
partition_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_innodb.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_innodb2.result MDEV-32335: main.partition_innodb2 fails in BB with different #rows 2023-10-03 15:40:42 +03:00
partition_innodb2.test MDEV-32335: main.partition_innodb2 fails in BB with different #rows 2023-10-03 15:40:42 +03:00
partition_innodb_plugin.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_innodb_plugin.test MDEV-24035 Failing assertion: UT_LIST_GET_LEN(lock.trx_locks) == 0 causing disruption and replication failure 2024-12-12 18:02:00 +02:00
partition_innodb_semi_consistent-master.opt
partition_innodb_semi_consistent.result MDEV-35124 Set innodb_snapshot_isolation=ON by default 2024-10-11 15:02:31 +03:00
partition_innodb_semi_consistent.test MDEV-35124 Set innodb_snapshot_isolation=ON by default 2024-10-11 15:02:31 +03:00
partition_innodb_stmt.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_innodb_stmt.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_key_cache.result Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
partition_key_cache.test Merge branch '11.4' into 11.5 2024-08-05 17:50:18 +02: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 13:25:41 -07:00
partition_list.test MDEV-16101: ADD PARTITION on table partitioned by list does not work with more than 32 list values. 2018-05-14 13:25:41 -07:00
partition_mgm.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_mgm.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_mgm_err.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
partition_mgm_err.test Merge branch '10.6' into 10.11 2024-07-22 15:14:50 +02:00
partition_mgm_err2.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_mgm_err2.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_mrr_aria.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_mrr_aria.test MDEV-20611: MRR scan over partitioned InnoDB table produces "Out of memory" error 2019-11-15 23:37:28 +03:00
partition_mrr_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_mrr_innodb.test MDEV-20611: MRR scan over partitioned InnoDB table produces "Out of memory" error 2019-11-15 23:37:28 +03:00
partition_mrr_myisam.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_mrr_myisam.test MDEV-21628: Index condition pushdown condition ... not used with BKA 2020-02-14 20:28:20 +03:00
partition_myisam.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
partition_myisam.test MDEV-31122 Server crash in get_lock_data / mysql_lock_abort_for_thread 2025-04-01 19:45:30 +02:00
partition_not_blackhole-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_not_blackhole.result Merge 10.4 to 10.5 2022-03-17 17:03:24 +11:00
partition_not_blackhole.test MDEV-27753 Incorrect ENGINE type of table after crash for CONNECT table 2022-03-14 08:55:59 +01:00
partition_not_windows-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_not_windows.result consistent error messages, no <angle quoting> 2025-04-18 09:41:23 +02:00
partition_not_windows.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_open_files_limit-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_open_files_limit.result Merge branch 10.2 into 10.3 2021-12-23 14:14:04 +01:00
partition_open_files_limit.test Merge 10.2 into 10.3 2018-05-24 11:27:15 +03:00
partition_order.result MDEV-26938 Support descending indexes internally in InnoDB (server part) 2022-01-26 18:43:05 +01:00
partition_order.test MDEV-26938 Support descending indexes internally in InnoDB (server part) 2022-01-26 18:43:05 +01:00
partition_pruning.result MDEV-12404 Index condition pushdown on partitioned tables 2024-04-17 09:07:19 -04:00
partition_pruning.test Merge branch '10.11' into 11.0 2023-11-08 17:09:44 +01:00
partition_range.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_range.test Merge 10.11 into 11.2 2024-10-03 13:24:43 +03:00
partition_rename_longfilename.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_rename_longfilename.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_sp.result Merge branch '10.2' into 10.3 2022-01-29 15:41:05 +01:00
partition_sp.test Merge branch '10.2' into 10.3 2022-01-29 15:41:05 +01:00
partition_symlink.result consistent error messages, no <angle quoting> 2025-04-18 09:41:23 +02:00
partition_symlink.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
partition_sync.result
partition_sync.test Vanilla cleanups and refactorings 2021-10-26 17:07:46 +02:00
partition_truncate.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_truncate.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
partition_ucs2.result MDEV-20855 Crash with PARTITION BY LIST and extended characters 2019-10-18 10:24:53 +04:00
partition_ucs2.test MDEV-20855 Crash with PARTITION BY LIST and extended characters 2019-10-18 10:24:53 +04:00
partition_utf8-debug.result MDEV-30805 SIGSEGV in my_convert and UBSAN: member access within null pointer of type 'const struct MY_CHARSET_HANDLER' in my_convert 2023-03-14 11:50:52 +04:00
partition_utf8-debug.test MDEV-20856 Bad values in metadata views for partitions on VARBINARY 2019-10-18 10:15:17 +04:00
partition_utf8.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
partition_utf8.test Merge 10.4 into 10.5 2019-11-07 08:52:30 +01:00
partition_windows.result consistent error messages, no <angle quoting> 2025-04-18 09:41:23 +02:00
partition_windows.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
password_expiration.result MDEV-24114 SHOW CREATE USER doesnt display correct password expiry status 2021-02-23 11:05:56 +02:00
password_expiration.test MDEV-7597 Expiration of user passwords 2019-02-21 15:04:03 +01:00
password_expiration_unix_socket.result MDEV-25884 Tests use environment $USER variable without quotes 2021-06-10 00:39:04 +03:00
password_expiration_unix_socket.test MDEV-25884 Tests use environment $USER variable without quotes 2021-06-10 00:39:04 +03:00
percona_nonflushing_analyze_debug.result
percona_nonflushing_analyze_debug.test MDEV-27691: make working view-protocol 2022-09-26 10:25:41 +07:00
perror-win.result Update errmsg-utf8.txt re my_snprintf suffixes 2025-02-12 10:17:44 +01:00
perror-win.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
perror.result Update errmsg-utf8.txt re my_snprintf suffixes 2025-02-12 10:17:44 +01:00
perror.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
plugin.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
plugin.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
plugin_auth.result Merge branch '10.6' into 10.11 2024-07-22 15:14:50 +02:00
plugin_auth.test Merge branch '10.11' into 11.2 2024-10-29 16:42:46 +01:00
plugin_auth_qa.result MDEV-19650: Privilege bug on MariaDB 10.4 2020-05-07 10:54:56 +02:00
plugin_auth_qa.test MDEV-27691: make working view-protocol 2022-09-23 19:47:30 +07:00
plugin_auth_qa_1.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
plugin_auth_qa_1.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
plugin_auth_qa_2-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_auth_qa_2.result
plugin_auth_qa_2.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
plugin_auth_qa_3-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_auth_qa_3.result MDEV-14974: --port ignored for --host=localhost 2021-05-11 11:50:41 -06:00
plugin_auth_qa_3.test Merge branch 'bb-10.5-all-builders' into bb-10.6-all-builders 2022-09-27 13:17:59 +07:00
plugin_innodb.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
plugin_innodb.result mysqld --help will now load mysqld.plugin table 2020-03-31 17:42:33 +02:00
plugin_innodb.test Merge branch '10.4' into 10.5 2020-11-01 14:26:15 +01:00
plugin_load.opt
plugin_load.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_load.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_load_option.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
plugin_load_option.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_load_option.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_loaderr.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_loaderr.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_loaderr.test MDEV-16944 Fix file sharing issues on Windows in mysqltest 2024-04-17 16:52:37 +02:00
plugin_maturity-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_maturity.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_maturity.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
plugin_not_embedded.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
plugin_not_embedded.result Merge branch '10.3' into 10.4 2022-10-01 23:07:26 +02:00
plugin_not_embedded.test Merge branch '10.2' into 10.3 2019-07-26 22:42:35 +02:00
plugin_vars.result Merge branch bb-10.2-release into bb-10.3-release 2021-05-04 14:49:31 +03:00
plugin_vars.test fix main.plugin_vars test to cleanup after itself 2024-11-05 14:00:46 -08:00
pool_of_threads.cnf Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
pool_of_threads.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
pool_of_threads.test Merge branch 'bb-10.11-vp-MDEV-27691' into 10.11 2022-10-17 19:12:21 +02:00
precedence.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
precedence.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
precedence_bugs.result MDEV-30082 View definition losing brackets changes semantics of the query and causes wrong result 2022-12-02 16:19:13 +01:00
precedence_bugs.test MDEV-30082 View definition losing brackets changes semantics of the query and causes wrong result 2022-12-02 16:19:13 +01:00
preload.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
preload.test MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
prepare.result MDEV-9938 Prepared statement return wrong result (missing row) 2023-08-15 21:41:01 +03:00
prepare.test MDEV-9938 Prepared statement return wrong result (missing row) 2023-08-15 21:41:01 +03:00
processlist.result MDEV-28131 Unexpected warning while selecting from information_schema.processlist 2022-03-21 16:42:58 +04:00
processlist.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
processlist_notembedded.result Merge branch '10.3' into 10.4 2021-08-02 16:50:28 +02:00
processlist_notembedded.test Merge branch '10.2' into 10.3 2021-08-02 11:41:00 +02:00
profiling.result Merge 10.4 into 10.5 2022-07-27 17:17:24 +03:00
profiling.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
progress_976225.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
progress_976225.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps-master.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
ps.result Merge branch '11.6' into 11.7 2024-11-10 19:22:21 +01:00
ps.test MDEV-25008: UPDATE/DELETE: Cost-based choice IN->EXISTS vs Materialization 2024-10-23 23:51:24 +11:00
ps_1general.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
ps_1general.test Update row and key fetch cost models to take into account data copy costs 2023-02-02 21:43:30 +03:00
ps_2myisam.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
ps_2myisam.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_3innodb-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_3innodb.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
ps_3innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_4heap.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
ps_4heap.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_5merge.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
ps_5merge.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_10nestset.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_10nestset.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_11bugs.result MDEV-35596 Assertion `type_handler()->result_type() == 2025-01-13 17:51:51 +04:00
ps_11bugs.test MDEV-35596 Assertion `type_handler()->result_type() == 2025-01-13 17:51:51 +04:00
ps_change_master.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
ps_change_master.test MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
ps_ddl.result Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
ps_ddl.test Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
ps_ddl1.result Merge branch '10.11' into 11.2 2024-10-29 16:42:46 +01:00
ps_ddl1.test MDEV-16708: fixed issue with handling of the directive --enable-prepared-warnings in mysqltest 2021-06-17 19:30:24 +02:00
ps_error.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
ps_error.test Fix the location of test files 2019-01-04 17:24:54 +02:00
ps_grant.result Merge branch '10.3' into 10.4 2022-10-01 23:07:26 +02:00
ps_grant.test MDEV-19650: Privilege bug on MariaDB 10.4 2020-05-07 10:54:56 +02:00
ps_innodb.result Merge branch '10.3' into 10.4 2022-07-27 11:02:57 +02:00
ps_innodb.test Merge branch '10.2' into 10.3 2019-07-26 22:42:35 +02:00
ps_max_subselect-5113.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_max_subselect-5113.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_mem_leaks.result MDEV-36079: Stored routine with a cursor crashes on the second execution if a DDL statement happened 2025-03-24 12:39:31 +07:00
ps_mem_leaks.test MDEV-36079: Stored routine with a cursor crashes on the second execution if a DDL statement happened 2025-03-24 12:39:31 +07:00
ps_missed_cmds.result Merge 10.6 into 10.7 2022-09-21 09:33:07 +03:00
ps_missed_cmds.test Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
ps_missed_cmds_bin_prot.result Merge branch 10.6 into 10.7 2022-10-25 16:02:57 +11:00
ps_missed_cmds_bin_prot.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
ps_missed_cmds_bin_prot_not_embedded.result
ps_missed_cmds_bin_prot_not_embedded.test
ps_missed_cmds_not_embedded.result MDEV-16708: extract nonembedded part of the test into a separate file 2021-06-17 19:30:24 +02:00
ps_missed_cmds_not_embedded.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
ps_not_windows.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_not_windows.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ps_qc_innodb.result Rename a test (fix merge error) 2018-05-09 17:06:27 +03:00
ps_qc_innodb.test
ps_show_log.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
ps_show_log.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
public_basic.result MDEV-30154: Assertion `strcasecmp(rolename, public_name.str) || acl_public == role' failed in acl_update_role on GRANT ... TO PUBLIC 2023-01-03 10:17:42 +01:00
public_basic.test MDEV-30154: Assertion `strcasecmp(rolename, public_name.str) || acl_public == role' failed in acl_update_role on GRANT ... TO PUBLIC 2023-01-03 10:17:42 +01:00
public_privileges.result Merge 10.10 into 10.11 2022-12-14 09:18:30 +02:00
public_privileges.test MDEV-29752 SHOW GRANTS for PUBLIC should work for all users 2022-11-02 00:31:20 +01:00
query_cache.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
query_cache.test Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
query_cache_28249.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
query_cache_28249.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
query_cache_debug.result Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
query_cache_debug.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
query_cache_innodb.result MDEV-18114 Foreign Key Constraint actions don't affect Virtual Column 2023-08-02 14:45:31 +02:00
query_cache_innodb.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
query_cache_merge.result Changed main_query_cache_merge to use flush global status 2024-07-06 18:14:07 +03:00
query_cache_merge.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
query_cache_notembedded-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
query_cache_notembedded.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
query_cache_notembedded.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
query_cache_ps_no_prot.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
query_cache_ps_no_prot.test MDEV-8334: Rename utf8 to utf8mb3 2021-05-19 06:48:36 +02:00
query_cache_ps_ps_prot.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
query_cache_ps_ps_prot.test MDEV-8334: Rename utf8 to utf8mb3 2021-05-19 06:48:36 +02:00
query_cache_with_views.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
query_cache_with_views.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
quick_select_4161.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
quick_select_4161.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
range.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
range.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
range_aria_dbt3.result MDEV-30486 Table is not eliminated in bb-11.0 2023-02-10 12:59:37 +02:00
range_aria_dbt3.test MDEV-30486 Table is not eliminated in bb-11.0 2023-02-10 12:59:37 +02:00
range_debug.result Move the testcase for BUG#21282 to a file that includes have_debug.inc 2018-08-23 19:30:26 +03:00
range_debug.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
range_innodb.result MDEV-31501 Assertion `cond_selectivity <= 1.000000001' failed (actual value 1.125) 2023-08-09 10:28:00 +03:00
range_innodb.test MDEV-31501 Assertion `cond_selectivity <= 1.000000001' failed (actual value 1.125) 2023-08-09 10:28:00 +03:00
range_interrupted-13751.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
range_interrupted-13751.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
range_mrr_icp.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
range_mrr_icp.test Merge branch '10.3' into 10.4 2019-09-06 11:53:10 +02:00
range_notembedded.result Merge 10.11 into 11.4 2025-03-03 11:07:56 +02:00
range_notembedded.test Merge 10.11 into 11.4 2025-03-03 11:07:56 +02:00
range_vs_index_merge.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
range_vs_index_merge.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
range_vs_index_merge_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
range_vs_index_merge_innodb.test MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
read_many_rows_innodb.result MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
read_many_rows_innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
read_only.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
read_only.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
read_only_innodb.result Merge branch '10.6' into 10.11 2024-04-22 15:23:10 +02:00
read_only_innodb.test Merge branch '10.6' into 10.11 2024-04-22 15:23:10 +02:00
rename.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rename.test Added IF EXISTS to RENAME TABLE and ALTER TABLE 2020-03-24 20:47:41 +02:00
renamedb.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
renamedb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
reopen_temp_table.result Merge 10.2 into 10.3 2019-03-12 14:26:34 +02:00
reopen_temp_table.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
repair.result fix incorrect merge 15700f54c2 2025-04-18 09:41:24 +02:00
repair.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
repair_symlink-5543.result MDEV-33751 Assertion `thd' failed in int temp_file_size_cb_func(tmp_file_tracking*, int) 2024-05-27 12:39:04 +02:00
repair_symlink-5543.test
replace.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
replace.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
replace_returning.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
replace_returning.test
replace_returning_datatypes.result
replace_returning_datatypes.test
replace_returning_err.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
replace_returning_err.test
require_secure_transport-master.opt MDEV-13362: implement --require_secure_transport option 2020-03-12 11:46:08 +01:00
require_secure_transport.result MDEV-32123: require_secure_transport doesn't allow TCP connections 2023-10-11 14:47:05 +07:00
require_secure_transport.test MariaDB 11.1.3 release 2023-11-14 18:28:37 +01:00
require_secure_transport_on.opt MDEV-32123: require_secure_transport doesn't allow TCP connections 2023-10-11 14:47:05 +07:00
require_secure_transport_on.result MDEV-32123: require_secure_transport doesn't allow TCP connections 2023-10-11 14:47:05 +07:00
require_secure_transport_on.test MariaDB 11.1.3 release 2023-11-14 18:28:37 +01:00
reset_connection.result MDEV-8334: Rename utf8 to utf8mb3 2021-05-19 06:48:36 +02:00
reset_connection.test Merge branch '10.5' into 10.6 2023-08-01 15:08:52 +02:00
rollback.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
rollback.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
round.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
round.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
row-checksum-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
row-checksum-old-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
row-checksum-old.result Merge branch '10.2' into 10.3 2022-05-03 10:59:54 +02:00
row-checksum-old.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
row-checksum.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
row-checksum.result Merge branch '10.2' into 10.3 2022-05-03 10:59:54 +02:00
row-checksum.test Merge branch '10.2' into 10.3 2022-05-03 10:59:54 +02:00
row.result Merge 10.4 into 10.5 2022-07-27 17:17:24 +03:00
row.test
rowid_filter.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rowid_filter.test Restore test coverage for MDEV-18956 2024-06-17 14:08:32 +03:00
rowid_filter_aria.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rowid_filter_aria.test
rowid_filter_innodb.result Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
rowid_filter_innodb.test Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
rowid_filter_innodb_debug.result Merge branch '10.11' into 11.1 2024-07-08 22:40:16 +02:00
rowid_filter_innodb_debug.test
rowid_filter_myisam.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rowid_filter_myisam.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rowid_filter_myisam_debug.result Merge branch '10.11' into 11.1 2024-07-08 22:40:16 +02:00
rowid_filter_myisam_debug.test
rowid_order_innodb.result MDEV-4750 follow-up: Reduce disabling innodb_stats_persistent 2021-08-31 13:55:02 +03:00
rowid_order_innodb.test MDEV-4750 follow-up: Reduce disabling innodb_stats_persistent 2021-08-31 13:55:02 +03:00
rownum.result MDEV-31073 Server crash, assertion `table != 0 && view->field_translation != 0' failure with ROWNUM and view 2023-04-27 21:19:10 +02:00
rownum.test Merge branch '10.5' into 10.6 2023-08-01 15:08:52 +02:00
rpl_mysql_upgrade_slave_repo_check.result MDEV-10047: table-based master info repository 2020-03-10 15:55:50 +05:30
rpl_mysql_upgrade_slave_repo_check.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
rpl_mysqldump_slave.result Merge branch '11.2' into 11.4 2024-08-04 17:27:48 +02:00
rpl_mysqldump_slave.test MDEV-33212: mysqldump uses MASTER_LOG_POS with dump-slave 2024-03-08 15:23:42 +01:00
sargable_casefold.result MDEV-31496: Make optimizer handle UCASE(varchar_col)=... 2023-09-12 17:14:43 +03:00
sargable_casefold.test MDEV-31496: Make optimizer handle UCASE(varchar_col)=... 2023-09-12 17:14:43 +03:00
sargable_casefold_notembedded.result MDEV-31496: Make optimizer handle UCASE(varchar_col)=... 2023-09-12 17:14:43 +03:00
sargable_casefold_notembedded.test MDEV-31496: Make optimizer handle UCASE(varchar_col)=... 2023-09-12 17:14:43 +03:00
sargable_casefold_part.result MDEV-31496: Make optimizer handle UCASE(varchar_col)=... 2023-09-12 17:14:43 +03:00
sargable_casefold_part.test MDEV-31496: Make optimizer handle UCASE(varchar_col)=... 2023-09-12 17:14:43 +03:00
sargable_date_cond.result make MyISAM and Aria report correct reflength to the server 2024-11-05 14:00:51 -08:00
sargable_date_cond.test MDEV-30946 Index usage for DATE(datetime_column) = const does not work for DELETE and UPDATE 2023-04-25 20:21:36 +07:00
schema.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
schema.test MDEV-28820 MyISAM wrong server status flags 2023-10-17 14:32:05 +02:00
second_frac-9175.result Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
second_frac-9175.test Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
secondary_key_costs.result fix incorrect merge 15700f54c2 2025-04-18 09:41:24 +02:00
secondary_key_costs.test MDEV-35958 Cost estimates for materialized derived tables are poor 2025-02-10 21:14:01 +02:00
secure_file_priv_win-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
secure_file_priv_win.result MDEV-28562 main.secure_file_priv_win fails with ps-protocol due to missing warnings 2022-07-18 17:18:26 +02:00
secure_file_priv_win.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
select,ps.rdiff Remove dates from all rdiff files 2025-01-05 16:40:11 +02:00
select.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
select.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
select_debug.result Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
select_debug.test Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
select_found.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
select_found.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
select_jcl6,ps.rdiff Remove dates from all rdiff files 2025-01-05 16:40:11 +02:00
select_jcl6.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
select_jcl6.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
select_pkeycache,ps.rdiff Remove dates from all rdiff files 2025-01-05 16:40:11 +02:00
select_pkeycache-master.opt
select_pkeycache.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
select_pkeycache.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
select_safe.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
select_safe.test Adjust cost for re-creating a row from the JOIN CACHE 2023-02-02 22:58:52 +03:00
selectivity.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
selectivity.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
selectivity_innodb.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
selectivity_innodb.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
selectivity_innodb_notembedded.result MDEV-21510: In Optimizer Trace, print index name in chosen_access_method 2025-04-27 22:16:17 -04:00
selectivity_innodb_notembedded.test MDEV-34993: Incorrect cardinality estimation causes poor query plan 2024-10-02 10:52:09 +03:00
selectivity_no_engine.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
selectivity_no_engine.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
selectivity_notembedded.result MDEV-21510: In Optimizer Trace, print index name in chosen_access_method 2025-04-27 22:16:17 -04:00
selectivity_notembedded.test Merge branch '11.6' into 11.7 2024-11-10 19:22:21 +01:00
sequence_debug.result MDEV-20471 Assertion during cleanup of failed CREATE TABLE LIKE <sequence> 2023-10-19 11:57:39 +02:00
sequence_debug.test MDEV-20471 Assertion during cleanup of failed CREATE TABLE LIKE <sequence> 2023-10-19 11:57:39 +02:00
servers.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
servers.test Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
session_tracker_sysvar.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
session_tracker_sysvar.test MDEV-35086 Trying to lock mutex when the mutex was already locked (session_tracker.cc), server hangs 2024-10-08 15:31:02 +02:00
session_user.result Make SESSION_USER() comparable with CURRENT_USER() 2024-10-04 13:22:40 +02:00
session_user.test Make SESSION_USER() comparable with CURRENT_USER() 2024-10-04 13:22:40 +02:00
set_operation.result Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
set_operation.test Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
set_operation_oracle.result sql_yacc_ora.yy: syncing grammar for "MDEV-18844 Implement EXCEPT ALL and INTERSECT ALL operations" 2019-10-30 16:05:36 +04:00
set_operation_oracle.test MDEV-27691: make working view-protocol 2022-09-26 10:25:41 +07:00
set_password.result mysqltest: support MARIADB_OPT_RESTRICTED_AUTH 2024-05-21 19:40:03 +02:00
set_password.test mysqltest: support MARIADB_OPT_RESTRICTED_AUTH 2024-05-21 19:40:03 +02:00
set_statement.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
set_statement.test Merge 10.11 into 11.2 2024-10-03 13:24:43 +03:00
set_statement_debug.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
set_statement_debug.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
set_statement_notembedded.result Merge branch '10.2' into 10.3 2020-10-30 17:23:53 +01:00
set_statement_notembedded.test Merge branch '10.2' into 10.3 2020-10-30 17:23:53 +01:00
set_statement_notembedded_binlog.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
set_statement_notembedded_binlog.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
set_statement_profiling.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
set_statement_profiling.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
show.result MDEV-28253 Mysqldump - INVISIBLE column error 2022-04-07 23:02:23 +02:00
show.test MDEV-28253 Mysqldump - INVISIBLE column error 2022-04-07 23:02:23 +02:00
show_analyze.result Merge branch '11.4' into 11.5 2024-05-23 17:01:43 +02:00
show_analyze.test Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
show_analyze_json.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
show_analyze_json.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
show_bad_definer-5553.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
show_bad_definer-5553.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
show_check-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
show_check.result make INFORMATION_SCHEMA.STATISTICS.COMMENT not nullable 2024-11-05 14:00:46 -08:00
show_check.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
show_create_user.result Merge branch '10.3' into 10.4 2020-02-11 14:40:35 +01:00
show_create_user.test MDEV-12321 authentication plugin: SET PASSWORD support 2018-10-31 16:06:16 +01:00
show_explain.opt Merge branch bb-10.2-release into bb-10.3-release 2021-05-04 14:49:31 +03:00
show_explain.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
show_explain.test Merge branch '11.2' into 11.3 2023-12-21 02:14:59 +01:00
show_explain_json.result MDEV-36463 Change expression_cache name to subquery_cache, and make appropriate changes to the test files 2025-04-15 14:36:02 -04:00
show_explain_json.test Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
show_explain_non_select.result MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
show_explain_non_select.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
show_explain_ps.result Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
show_explain_ps.test Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
show_function_with_pad_char_to_full_length.result
show_function_with_pad_char_to_full_length.test
show_profile.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
show_profile.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
show_row_order-9226.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
show_row_order-9226.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
shutdown.result MDEV-22010: mtr search for mariadbd first 2020-04-06 18:23:35 +02:00
shutdown.test MDEV-16944 Fix file sharing issues on Windows in mysqltest 2024-04-17 16:52:37 +02:00
shutdown_debug.combinations MDEV-18353 fixup. Run mtr test on Windows 2022-09-07 17:58:34 +02:00
shutdown_debug.result MDEV-18353 fixup. Run mtr test on Windows 2022-09-07 17:58:34 +02:00
shutdown_debug.test Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
sighup-6580.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sighup-6580.test
signal.result MDEV-16708: Unsupported commands for prepared statements 2021-06-17 19:30:24 +02:00
signal.test MDEV-16708: Unsupported commands for prepared statements 2021-06-17 19:30:24 +02:00
signal_code.result Removed CREATE/DROP TABLESPACE and related commands 2021-09-14 18:04:09 +03:00
signal_code.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
signal_demo1.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
signal_demo1.test MDEV-16708: fixed issue with handling of the directive --enable-prepared-warnings in mysqltest 2021-06-17 19:30:24 +02:00
signal_demo2.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
signal_demo2.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
signal_demo3.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
signal_demo3.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
signal_sqlmode.result MDEV-26635 ROW_NUMBER is not 0 for errors not caused because of rows 2021-10-26 17:29:40 +02:00
signal_sqlmode.test MDEV-15241: make SIGNAL maximum MESSAGE_TEXT length a larger value 2018-04-04 19:04:14 +05:30
simultaneous_assignment.result Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
simultaneous_assignment.test Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
single_delete_update.result Update row and key fetch cost models to take into account data copy costs 2023-02-02 21:43:30 +03:00
single_delete_update.test Merge 10.11 into 11.2 2024-10-03 13:24:43 +03:00
single_delete_update_innodb.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
single_delete_update_innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
skip_grants.opt Merge branch '10.2' into 10.3 2021-02-01 13:49:33 +01:00
skip_grants.result MDEV-36351 MariaDB crashes when trying to access information_schema.users under --skip-grant-tables 2025-04-18 09:41:23 +02:00
skip_grants.test MDEV-36351 MariaDB crashes when trying to access information_schema.users under --skip-grant-tables 2025-04-18 09:41:23 +02:00
skip_log_bin-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
skip_log_bin.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
skip_log_bin.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
skip_name_resolve-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
skip_name_resolve.result Merge branch '10.2' into 10.3 2021-07-21 20:11:07 +02:00
skip_name_resolve.test Merge branch '10.2' into 10.3 2021-07-21 20:11:07 +02:00
slowlog_enospace-10508.result Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
slowlog_enospace-10508.test Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
slowlog_integrity.result Merge branch '10.5' into 10.6 2025-01-29 11:17:38 +01:00
slowlog_integrity.test MDEV-20281 "[ERROR] Failed to write to mysql.slow_log:" without error reason 2025-01-25 20:37:51 +01:00
sp-anchor-row-type-cursor.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-anchor-row-type-cursor.test
sp-anchor-row-type-table.result MDEV-12252 ROW data type for stored function return values 2024-10-21 07:59:29 +04:00
sp-anchor-row-type-table.test MDEV-12252 ROW data type for stored function return values 2024-10-21 07:59:29 +04:00
sp-anchor-type.result MDEV-12252 ROW data type for stored function return values 2024-10-21 07:59:29 +04:00
sp-anchor-type.test MDEV-12252 ROW data type for stored function return values 2024-10-21 07:59:29 +04:00
sp-big.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
sp-big.test MDEV-16708: fixed issue with handling of the directive --enable-prepared-warnings in mysqltest 2021-06-17 19:30:24 +02:00
sp-bugs.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
sp-bugs.test MDEV-34501: SIGSEGV in pfs_start_mutex_wait_v1, __strlen_avx2, or __strlen_evex from safe_mutex_lock on CREATE DEFINER when using skip-grant-tables 2025-03-21 09:25:15 +01:00
sp-bugs2.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-bugs2.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-code.result MDEV-10862: Stored procedures: default values for parameters (optional parameters) 2025-01-31 19:42:04 +04:00
sp-code.test MDEV-10862: Stored procedures: default values for parameters (optional parameters) 2025-01-31 19:42:04 +04:00
sp-condition-handler.result MDEV-16584 SP with a cursor inside a loop wastes THD memory aggressively 2018-06-28 16:55:42 +04:00
sp-condition-handler.test MDEV-16584 SP with a cursor inside a loop wastes THD memory aggressively 2018-06-28 16:55:42 +04:00
sp-cursor.result MDEV-36462: Crash on DECLARE spvar1 ROW TYPE OF cursor1 after a table recreation 2025-04-04 13:36:56 +07:00
sp-cursor.test MDEV-36462: Crash on DECLARE spvar1 ROW TYPE OF cursor1 after a table recreation 2025-04-04 13:36:56 +07:00
sp-default-param.result MDEV-10862: Stored procedures: default values for parameters (optional parameters) 2025-01-31 19:42:04 +04:00
sp-default-param.test MDEV-10862: Stored procedures: default values for parameters (optional parameters) 2025-01-31 19:42:04 +04:00
sp-destruct.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-destruct.test
sp-dynamic.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
sp-dynamic.test MDEV-16708: Unsupported commands for prepared statements 2021-06-17 19:30:24 +02:00
sp-error.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
sp-error.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
sp-expr.result Adding more tests for IN/EXIST subqueries for better coverage 2018-04-20 23:15:27 +04:00
sp-expr.test Adding more tests for IN/EXIST subqueries for better coverage 2018-04-20 23:15:27 +04:00
sp-fib.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-fib.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-for-loop.result MDEV-32275 getting error 'Illegal parameter data types row and bigint for operation '+' ' when using ITERATE in a FOR..DO 2023-10-04 16:06:59 +04:00
sp-for-loop.test MDEV-32275 getting error 'Illegal parameter data types row and bigint for operation '+' ' when using ITERATE in a FOR..DO 2023-10-04 16:06:59 +04:00
sp-group.result MDEV-15058: Revert the changes to INFORMATION_SCHEMA 2020-02-12 20:54:59 +02:00
sp-group.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-i_s_columns.result MDEV-28267 ASAN heap-use-after-free in Item_sp::func_name_cstring 2022-04-09 23:01:26 +04:00
sp-i_s_columns.test MDEV-28267 ASAN heap-use-after-free in Item_sp::func_name_cstring 2022-04-09 23:01:26 +04:00
sp-innodb.result Merge branch '10.2' into 10.3 2018-05-11 13:15:10 +02:00
sp-innodb.test Merge branch '10.2' into 10.3 2018-05-11 13:15:10 +02:00
sp-inout.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-inout.test Merge branch '10.6' into 10.9 2023-08-04 08:01:06 +02:00
sp-lock.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-lock.test MDEV-28820 MyISAM wrong server status flags 2023-10-17 14:32:05 +02:00
sp-memory-leak.result MDEV-31578 DECLARE CURSOR: "Memory not freed: 280 bytes lost" on syntax error 2023-06-29 21:29:46 +04:00
sp-memory-leak.test MDEV-31578 DECLARE CURSOR: "Memory not freed: 280 bytes lost" on syntax error 2023-06-29 21:29:46 +04:00
sp-no-code.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-no-code.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-no-valgrind.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-no-valgrind.test Revert "Fix valgrind detection" 2025-04-22 21:06:55 +03:00
sp-package-code.result MDEV-36047 Package body variables are not allowed as FETCH targets 2025-02-09 13:56:19 +04:00
sp-package-code.test MDEV-36047 Package body variables are not allowed as FETCH targets 2025-02-09 13:56:19 +04:00
sp-package-security.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-package-security.test MDEV-33386 Wrong error message on GRANT .. ON PACKAGE no_such_package .. 2024-02-05 14:41:44 +04:00
sp-package.result MDEV-36067 Assertion failure in TABLE_SHARE::init_from_sql_statement_string 2025-04-18 09:41:23 +02:00
sp-package.test MDEV-36067 Assertion failure in TABLE_SHARE::init_from_sql_statement_string 2025-04-18 09:41:23 +02:00
sp-prelocking.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-prelocking.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
sp-row-vs-var.inc Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-row.result Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
sp-row.test Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
sp-security-anchor-type.result
sp-security-anchor-type.test
sp-security-debug.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-security-debug.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-security.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-security.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-threads.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-threads.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp-ucs2.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-ucs2.test Merge branch '10.2' into 10.3 2021-02-01 13:49:33 +01:00
sp-vars.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp-vars.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
sp.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
sp2.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp2.test MDEV-9077 Use sys schema in bootstrapping, incl. mtr 2021-03-18 08:02:48 +01:00
sp_gis.result MDEV-19944 Remove GIS data types from keyword list in lex.h 2019-07-04 07:48:46 +04:00
sp_gis.test MDEV-16708: fixed issue with handling of the directive --enable-prepared-warnings in mysqltest 2021-06-17 19:30:24 +02:00
sp_missing_4665.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp_missing_4665.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp_notembedded.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp_notembedded.test fix test failures with ASAN 2023-12-21 10:21:05 +02:00
sp_stress_case.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp_stress_case.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp_sync.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp_sync.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sp_trans.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sp_trans.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
sp_trans_log.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
sp_trans_log.test MDEV-16708: fixed issue with handling of the directive --enable-prepared-warnings in mysqltest 2021-06-17 19:30:24 +02:00
sp_validation.result MDEV-36390: Minor refactoring of the method get_expr_query at the classes sp_instr_cpush/sp_instr_cursor_copy_struct 2025-04-19 20:57:54 +04:00
sp_validation.test MDEV-36390: Minor refactoring of the method get_expr_query at the classes sp_instr_cpush/sp_instr_cursor_copy_struct 2025-04-19 20:57:54 +04:00
sql_mode.result MDEV-35308 NO_KEY_OPTIONS SQL mode has no effect on engine key options 2024-11-05 14:00:52 -08:00
sql_mode.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sql_mode_pad_char_to_full_length.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
sql_mode_pad_char_to_full_length.test
sql_safe_updates.opt MDEV-14429 sql_safe_updates in my.cnf not work 2018-11-06 13:36:50 +01:00
sql_safe_updates.result Ensure that test_quick_select doesn't return more rows than in the table 2023-01-30 15:22:20 +02:00
sql_safe_updates.test Ensure that test_quick_select doesn't return more rows than in the table 2023-01-30 15:22:20 +02:00
ssl-big.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ssl-big.test Merge 10.5 into 10.6 2022-10-06 09:22:39 +03:00
ssl.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
ssl.test MDEV-32751 fixup: cmake -DPLUGIN_PERFSCHEMA=NO 2023-12-14 13:15:51 +02:00
ssl_8k_key-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ssl_8k_key.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ssl_8k_key.test Merge 10.2 into 10.3 2019-12-12 14:41:51 +02:00
ssl_7937,nossl.result Merge branch '10.9' into 10.10 2022-08-09 09:47:16 +02:00
ssl_7937.combinations Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ssl_7937.result Merge branch '10.9' into 10.10 2022-08-09 09:47:16 +02:00
ssl_7937.test MDEV-33430 - Fix self-signed certificate errors on Windows 2024-02-09 14:57:54 +01:00
ssl_and_innodb.result compile-time deprecation reminders 2023-09-30 14:43:12 +02:00
ssl_and_innodb.test openssl: add a more specific DES support detection 2024-04-30 23:09:02 +10:00
ssl_autoverify,win.rdiff MDEV-33430 - Fix self-signed certificate errors on Windows 2024-02-09 14:57:54 +01:00
ssl_autoverify.combinations MDEV-31856 use ephemeral ssl certificates 2024-02-04 22:19:00 +01:00
ssl_autoverify.result MDEV-33430 - Fix self-signed certificate errors on Windows 2024-02-09 14:57:54 +01:00
ssl_autoverify.test MDEV-33430 - Fix self-signed certificate errors on Windows 2024-02-09 14:57:54 +01:00
ssl_ca.result CC 3.1 update 2022-07-29 13:39:12 +02:00
ssl_ca.test update C/C 3.4 2024-08-04 17:28:08 +02:00
ssl_cipher.opt fix ssl_cipher test 2021-07-23 10:41:04 +02:00
ssl_cipher.result Add MTR to verify behavior on incompatible TLS configuration 2025-01-09 11:22:11 +11:00
ssl_cipher.test Add MTR to verify behavior on incompatible TLS configuration 2025-01-09 11:22:11 +11:00
ssl_compress.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
ssl_compress.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
ssl_connect.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ssl_connect.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ssl_crl.combinations SSL test fixes 2019-01-28 14:41:39 +01:00
ssl_crl.result Update tests to be compatible with OpenSSL 3.2.0 2024-04-19 15:44:28 +01:00
ssl_crl.test Merge '10.5' into 10.6 2024-04-20 14:47:26 +02:00
ssl_crl_clients.result MDEV-29615 mtr to use mariadb names 2022-10-21 18:37:13 +11:00
ssl_crl_clients.test MDEV-29615 mtr to use mariadb names 2022-10-21 18:37:13 +11:00
ssl_fp.result Merge branch '11.2' into 11.4 2024-10-30 15:11:17 +01:00
ssl_fp.test Merge branch '11.2' into 11.4 2024-10-30 15:11:17 +01:00
ssl_system_ca,bad.result update C/C 3.4 2024-08-04 17:28:08 +02:00
ssl_system_ca.combinations Merge branch '10.2' into 10.3 2020-01-24 14:16:20 +01:00
ssl_system_ca.result Merge branch '10.2' into 10.3 2020-01-24 14:16:20 +01:00
ssl_system_ca.test Merge branch '11.2' into 11.4 2024-10-30 15:11:17 +01:00
ssl_timeout-9836.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ssl_timeout-9836.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ssl_timeout-9836.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
ssl_timeout.result adjust timeout value in main.ssl_timeout test 2024-04-21 10:47:20 +02:00
ssl_timeout.test adjust timeout value in main.ssl_timeout test 2024-04-21 10:47:20 +02:00
ssl_verify_ip.opt Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
ssl_verify_ip.result Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
ssl_verify_ip.test Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
stack-crash.result Make error messages from DROP TABLE and DROP TABLE IF EXISTS consistent 2020-06-14 19:39:42 +03:00
stack-crash.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
stack.result Fix main.stack on Windows 2025-01-16 23:04:59 +01:00
stack.test Merge 10.5 into 10.6 2025-01-20 09:57:37 +02:00
stat_tables-enospc.result Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
stat_tables-enospc.test Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
stat_tables.result Merge 10.11 into 11.0 2023-10-19 08:12:16 +03:00
stat_tables.test Merge 10.11 into 11.0 2023-10-19 08:12:16 +03:00
stat_tables_disabled.result MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
stat_tables_disabled.test Merge 10.4 into 10.5 2022-10-06 08:29:56 +03:00
stat_tables_flush.result Merge 10.11 into 11.0 2023-10-19 08:12:16 +03:00
stat_tables_flush.test Small corrections to MDEV-29693 ANALYZE TABLE 2023-09-05 19:37:07 +03:00
stat_tables_innodb.result Merge 10.11 into 11.0 2023-10-19 08:12:16 +03:00
stat_tables_innodb.test Merge 10.4 into 10.5 2022-10-06 08:29:56 +03:00
stat_tables_innodb_debug.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
stat_tables_innodb_debug.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
stat_tables_missing.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
stat_tables_missing.test MDEV-18788 Live upgrade from MySQL 5.6/5.7 to MariaDB 10.4 fails with "Event Scheduler: An error occurred when initializing system tables" 2019-06-07 18:41:08 +02:00
stat_tables_myisam_debug.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
stat_tables_myisam_debug.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
stat_tables_par.inc MDEV-27691: make working view-protocol 2022-09-27 13:18:28 +07:00
stat_tables_par.result
stat_tables_par.test Cleanups & indentation changes 2020-03-24 21:00:02 +02:00
stat_tables_par_innodb.result MDEV-7317: Make an index ignorable to the optimizer 2021-03-04 22:50:00 +05:30
stat_tables_par_innodb.test Merge 10.4 into 10.5 2022-10-06 08:29:56 +03:00
stat_tables_partition.result MDEV-21472: ALTER TABLE ... ANALYZE PARTITION ... with EITS reads and locks all rows 2024-01-30 09:19:01 +02:00
stat_tables_partition.test Merge branch '10.2' into 10.3 2020-08-03 13:41:29 +02:00
stat_tables_rbr.result MDEV-21472: ALTER TABLE ... ANALYZE PARTITION ... with EITS reads and locks all rows 2024-01-30 09:19:01 +02:00
stat_tables_rbr.test Merge 10.3 into 10.4 2022-12-13 11:37:33 +02:00
stat_tables_repl.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
stat_tables_repl.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
statement-expr.result MDEV-20634 Report disallowed subquery errors as such (instead of parse error) 2019-09-20 10:36:20 +04:00
statement-expr.test MDEV-20634 Report disallowed subquery errors as such (instead of parse error) 2019-09-20 10:36:20 +04:00
statistics.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
statistics.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
statistics_close.result Merge 10.2 into 10.3 2018-05-29 17:34:49 +03:00
statistics_close.test Merge 10.2 into 10.3 2018-05-29 17:34:49 +03:00
statistics_index_crash-7362.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
statistics_index_crash-7362.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
statistics_json.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
statistics_json.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
statistics_upgrade.result Merge 10.7 into 10.8 2022-09-21 09:52:09 +03:00
statistics_upgrade.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
statistics_upgrade_not_done.result MDEV-26519: Improved histograms: Better error reporting, test coverage 2022-01-19 18:10:11 +03:00
statistics_upgrade_not_done.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
status-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
status.result MDEV-33965 - fix non-determinism in the main.status test 2025-02-12 13:45:21 +01:00
status.test MDEV-33965 - fix non-determinism in the main.status test 2025-02-12 13:45:21 +01:00
status2.result Move debug dependent MDEV-32441 test in separate file 2024-06-13 10:51:24 +02:00
status2.test Merge 11.2 into 11.4 2024-10-03 14:32:14 +03:00
status_bug17954.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
status_bug17954.test MDEV-22933 - remove ---source include/not_threadpool.inc from tests 2020-06-18 23:12:54 +02:00
status_debug.result Move debug dependent MDEV-32441 test in separate file 2024-06-13 10:51:24 +02:00
status_debug.test Move debug dependent MDEV-32441 test in separate file 2024-06-13 10:51:24 +02:00
str_to_datetime_457.result MDEV-17740 Extend EXTRACT(x AS DAY*) to understand long time intervals 2018-11-17 10:14:44 +04:00
str_to_datetime_457.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
strict-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
strict.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
strict.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
strict_autoinc_1myisam.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
strict_autoinc_1myisam.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
strict_autoinc_2innodb.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
strict_autoinc_2innodb.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
strict_autoinc_3heap.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
strict_autoinc_3heap.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
strings.result MDEV-28315 Fix ASAN stack-buffer-overflow in String::copy_aligned 2022-08-01 20:27:33 +09:00
strings.test MDEV-28315 Fix ASAN stack-buffer-overflow in String::copy_aligned 2022-08-01 20:27:33 +09:00
subselect-crash_15755.result MDEV-4750 follow-up: Reduce disabling innodb_stats_persistent 2021-08-31 13:55:02 +03:00
subselect-crash_15755.test MDEV-4750 follow-up: Reduce disabling innodb_stats_persistent 2021-08-31 13:55:02 +03:00
subselect.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
subselect.test Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
subselect2.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect2.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect3.inc cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
subselect3.result Merge 10.11 into 11.4 2024-12-02 11:35:34 +02:00
subselect3.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
subselect3_jcl6.result Merge 10.11 into 11.4 2024-12-02 11:35:34 +02:00
subselect3_jcl6.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
subselect4.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
subselect4.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_cache.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
subselect_cache.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
subselect_debug.result MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
subselect_debug.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
subselect_elimination.result MDEV-32086 (part 2) Server crash when inserting from derived table containing insert target table 2025-04-25 15:10:36 +02:00
subselect_elimination.test MDEV-32086 (part 2) Server crash when inserting from derived table containing insert target table 2025-04-25 15:10:36 +02:00
subselect_exists2in.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
subselect_exists2in.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_exists2in_costmat.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
subselect_exists2in_costmat.test Merge 10.11 into 11.2 2024-10-03 13:24:43 +03:00
subselect_extra.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_extra.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_extra_no_semijoin.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_extra_no_semijoin.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_firstmatch.result
subselect_firstmatch.test Allow firstmatch to use HASH joins 2023-03-07 14:27:26 +02:00
subselect_gis.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
subselect_gis.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
subselect_innodb.result Trivial fix: Make test_if_cheaper_ordering() use actual_rec_per_key() 2024-08-25 16:05:00 +03:00
subselect_innodb.test Trivial fix: Make test_if_cheaper_ordering() use actual_rec_per_key() 2024-08-25 16:05:00 +03:00
subselect_mat.result fix incorrect merge 15700f54c2 2025-04-18 09:41:24 +02:00
subselect_mat.test Merge 10.11 into 11.4 2024-12-02 11:35:34 +02:00
subselect_mat_analyze_json.result Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
subselect_mat_analyze_json.test Merge 10.11 into 11.4 2024-12-02 11:35:34 +02:00
subselect_mat_cost.opt typos in comments, etc 2023-02-10 12:59:36 +02:00
subselect_mat_cost.result make MyISAM and Aria report correct reflength to the server 2024-11-05 14:00:51 -08:00
subselect_mat_cost.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
subselect_mat_cost_bugs.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
subselect_mat_cost_bugs.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_no_exists_to_in.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
subselect_no_exists_to_in.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
subselect_no_mat.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
subselect_no_mat.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
subselect_no_opts.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
subselect_no_opts.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
subselect_no_scache.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
subselect_no_scache.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
subselect_no_semijoin.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
subselect_no_semijoin.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
subselect_notembedded.result
subselect_notembedded.test
subselect_nulls.result MDEV-32555 wrong result with an index and a partially null-rejecting condition 2023-10-28 09:11:32 +02:00
subselect_nulls.test MDEV-32555 wrong result with an index and a partially null-rejecting condition 2023-10-28 09:11:32 +02:00
subselect_nulls_innodb.result MDEV-32090 Test for null-safe equals in join 2024-01-11 13:35:57 -05:00
subselect_nulls_innodb.test MDEV-32090 Test for null-safe equals in join 2024-01-11 13:35:57 -05:00
subselect_partial_match.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
subselect_partial_match.test Added test cases for preceding test 2023-02-03 00:00:35 +03:00
subselect_sj.result Fixed costs in JOIN_TAB::estimate_scan_time() and HEAP 2025-02-10 15:59:28 +02:00
subselect_sj.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
subselect_sj2.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
subselect_sj2.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_sj2_jcl6.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
subselect_sj2_jcl6.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_sj2_mat.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
subselect_sj2_mat.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_sj_aria.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
subselect_sj_aria.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
subselect_sj_jcl6.result Fixed costs in JOIN_TAB::estimate_scan_time() and HEAP 2025-02-10 15:59:28 +02:00
subselect_sj_jcl6.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_sj_mat.result fix incorrect merge 15700f54c2 2025-04-18 09:41:24 +02:00
subselect_sj_mat.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
subselect_sj_nonmerged.result Added test cases for preceding test 2023-02-03 00:00:35 +03:00
subselect_sj_nonmerged.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
sum_distinct-big.result Merge 10.4 to 10.5 2020-10-22 17:08:49 +03:00
sum_distinct-big.test Merge branch '10.4' into 10.5 2023-11-08 12:59:00 +01:00
sum_distinct.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sum_distinct.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
symlink-aria-11902.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
symlink-aria-11902.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
symlink-myisam-11902.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
symlink-myisam-11902.test Do not disable --symbolic-links on Valgrind (or MSAN) 2022-04-25 09:36:30 +03:00
symlink.result consistent error messages, no <angle quoting> 2025-04-18 09:41:23 +02:00
symlink.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
synchronization.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
synchronization.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sysdate_is_now-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sysdate_is_now.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
sysdate_is_now.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
system_mysql_db.result Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
system_mysql_db.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
system_mysql_db_507.result MDEV-24114 SHOW CREATE USER doesnt display correct password expiry status 2021-02-23 11:05:56 +02:00
system_mysql_db_507.test MDEV-7597 Expiration of user passwords 2019-02-21 15:04:03 +01:00
system_mysql_db_error_log-master.opt MDEV-21704 Add a new JSON field "version_id" into mysql.global_priv.priv 2020-02-28 15:58:31 +04:00
system_mysql_db_error_log.result Fixed compile failure in sql_print_warning in sql_acl.cc 2025-02-18 17:00:42 +02:00
system_mysql_db_error_log.test Fixed compile failure in sql_print_warning in sql_acl.cc 2025-02-18 17:00:42 +02:00
system_mysql_db_fix40123.result Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
system_mysql_db_fix40123.test MDEV-28632 Change default of explicit_defaults_for_timestamp to ON 2022-08-10 15:03:22 +02:00
system_mysql_db_fix50030.result Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
system_mysql_db_fix50030.test
system_mysql_db_fix50117.result Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
system_mysql_db_fix50117.test MDEV-23908: Implement SELECT ... OFFSET ... FETCH ... 2021-04-21 14:09:14 +03:00
system_mysql_db_fix50568.result Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
system_mysql_db_fix50568.test Merge 10.5 into 10.6 2023-04-11 16:15:19 +03:00
system_mysql_db_refs.result MDEV-15851 Stop creating mysql.host table 2018-08-16 18:12:13 +01:00
system_mysql_db_refs.test MDEV-15851 Stop creating mysql.host table 2018-08-16 18:12:13 +01:00
system_time_debug.result MDEV-20079 When setting back the system time while mysqld is running, NOW() and UNIX_TIMESTAMP() results get stuck 2019-09-04 09:30:43 +02:00
system_time_debug.test MDEV-20079 When setting back the system time while mysqld is running, NOW() and UNIX_TIMESTAMP() results get stuck 2019-09-04 09:30:43 +02:00
table_elim.result Merge 11.4 into 11.8 2025-03-05 20:39:47 +02:00
table_elim.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
table_elim_debug.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
table_elim_debug.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
table_keyinfo-6838.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
table_keyinfo-6838.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
table_options-5867.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
table_options-5867.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
table_options.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
table_options.test MDEV-31822 ALTER TABLE ENGINE=x started failing instead of producing warning on unsupported TRANSACTIONAL=1 2023-08-02 14:45:31 +02:00
table_value_constr.result Merge branch '10.11' into 11.2 2024-10-29 16:42:46 +01:00
table_value_constr.test Merge 10.11 into 11.0 2024-02-20 12:02:01 +02:00
tablelock.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
tablelock.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
tablespace.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
tablespace.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
tc_heuristic_recover.result This commit is a fixup for MDEV-22189. 2021-07-26 22:59:10 +05:30
tc_heuristic_recover.test Merge branch '10.5' into 10.6 2023-08-01 15:08:52 +02:00
temp_table-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
temp_table.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
temp_table.test Merge 10.5 into 10.6 2024-04-17 14:14:58 +03:00
temp_table_frm.result MDEV-36138 Server null-pointer crash at startup when tmptables left in --tmpdir 2025-02-24 12:10:32 +11:00
temp_table_frm.test MDEV-36138 Server null-pointer crash at startup when tmptables left in --tmpdir 2025-02-24 12:10:32 +11:00
temp_table_symlink.result Merge 10.2 into 10.3 2020-09-03 09:26:54 +03:00
temp_table_symlink.test MDEV-31933: Make working view-protocol + ps-protocol (running two protocols together) 2024-07-02 10:11:33 +07:00
temporal_literal.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
temporal_literal.test MDEV-16708: fixed issue with handling of the directive --enable-prepared-warnings in mysqltest 2021-06-17 19:30:24 +02:00
temporal_scale_4283.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
temporal_scale_4283.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
thread_id_overflow.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
thread_id_overflow.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
thread_pool_info.opt MDEV-26440 Missing connection id value in I_S.thread_pool_queues 2021-08-19 21:16:22 +02:00
thread_pool_info.result MDEV-18918 SQL mode EMPTY_STRING_IS_NULL breaks RBR upon CREATE TABLE .. SELECT 2022-01-25 10:31:55 +04:00
thread_pool_info.test Merge branch '10.4' into 10.5 2023-07-27 15:43:21 +02:00
timeout.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
timeout.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
timezone-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
timezone.opt MDEV-35088 main.timezone failing - MEST vs CET time zone difference 2024-11-13 17:39:47 +11:00
timezone.result fix main.timezone test for DST 2025-03-31 11:10:12 +02:00
timezone.test Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
timezone2.result MDEV-15751 CURRENT_TIMESTAMP should return a TIMESTAMP [WITH TIME ZONE?] 2024-10-19 22:48:23 +02:00
timezone2.test MDEV-15751 CURRENT_TIMESTAMP should return a TIMESTAMP [WITH TIME ZONE?] 2024-10-19 22:48:23 +02:00
timezone3-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
timezone3.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
timezone3.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
timezone4-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
timezone4.result MDEV-15751 CURRENT_TIMESTAMP should return a TIMESTAMP [WITH TIME ZONE?] 2024-10-19 22:48:23 +02:00
timezone4.test MDEV-15751 CURRENT_TIMESTAMP should return a TIMESTAMP [WITH TIME ZONE?] 2024-10-19 22:48:23 +02:00
timezone_grant.result MDEV-28548: ER_TABLEACCESS_DENIED_ERROR is missing information about DB 2022-09-30 08:48:57 +02:00
timezone_grant.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
tls_version.opt MDEV-14101 Provide an option to select TLS protocol version 2019-06-17 12:26:25 +02:00
tls_version.result fix SSL tests for the new C/C 3.4 2024-05-21 19:39:45 +02:00
tls_version.test fix SSL tests for the new C/C 3.4 2024-05-21 19:39:45 +02:00
tlsv13.result ssl_cipher parameter cannot configure TLSv1.3 and TLSv1.2 ciphers at the same time 2024-09-26 11:50:20 +02:00
tlsv13.test ssl_cipher parameter cannot configure TLSv1.3 and TLSv1.2 ciphers at the same time 2024-09-26 11:50:20 +02:00
tmp_space_usage-master.opt MDEV-9101 Limit size of created disk temporary files and tables 2024-05-27 12:39:04 +02:00
tmp_space_usage.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
tmp_space_usage.test MDEV-9101 forgotten symbolic error representation 2025-03-06 10:00:03 +01:00
tmp_table_count-7586.result MDEV-34605 Fix tmp_table_count-7586 2024-07-31 08:28:33 +10:00
tmp_table_count-7586.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
tmp_table_error.result Merge branch '10.2' into 10.3 2022-02-10 20:23:56 +01:00
tmp_table_error.test Merge branch '10.2' into 10.3 2022-02-10 20:23:56 +01:00
trans_read_only-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
trans_read_only.result MDEV-21921 Make transaction_isolation and transaction_read_only into system variables 2023-04-12 11:04:29 +10:00
trans_read_only.test MDEV-21921 Make transaction_isolation and transaction_read_only into system variables 2023-04-12 11:04:29 +10:00
transaction_timeout.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
transaction_timeout.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
trigger-compat.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
trigger-compat.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
trigger-trans.result Updated main.trigger-trans.test to make it more resiliant 2021-06-02 01:03:38 +03:00
trigger-trans.test Merge branch '10.4' into 10.5 2023-07-27 15:43:21 +02:00
trigger.result MDEV-34551: Column list in the trigger definition 2025-01-24 20:55:42 +07:00
trigger.test MDEV-34551: Column list in the trigger definition 2025-01-24 20:55:42 +07:00
trigger_no_defaults-11698.result MDEV-19761 Before Trigger not processed for Not Null Columns if no explicit value and no DEFAULT 2025-01-17 23:42:56 +01:00
trigger_no_defaults-11698.test MDEV-19761 Before Trigger not processed for Not Null Columns if no explicit value and no DEFAULT 2025-01-17 23:42:56 +01:00
trigger_notembedded.result Merge branch '11.7' into 11.8 2025-02-11 20:29:43 +01:00
trigger_notembedded.test MDEV-34551: Column list in the trigger definition 2025-01-24 20:55:42 +07:00
trigger_null.result Merge 10.6 into 10.11 2025-03-27 08:01:47 +02:00
trigger_null.test Merge 10.6 into 10.11 2025-03-27 08:01:47 +02:00
trigger_wl3253.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
trigger_wl3253.test MDEV-32250 Enable --no-autocommit by default in mysqldump 2024-12-03 20:25:04 +05:30
truncate-stale-6500.result Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
truncate-stale-6500.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
truncate.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
truncate.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
truncate_badse.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
truncate_badse.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
truncate_badse.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
truncate_coverage.result Changed FLUSH TABLES to not change share version 2018-12-09 22:12:26 +02:00
truncate_coverage.test Changed FLUSH TABLES to not change share version 2018-12-09 22:12:26 +02:00
truncate_notembedded.result Merge 10.6 into 10.7 2022-03-24 18:57:07 +11:00
truncate_notembedded.test Merge branch 'bb-10.6-all-builders' into bb-10.7-all-builders 2022-09-27 14:59:07 +07:00
type_binary.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
type_binary.test MDEV-36235 Incorrect result for BETWEEN over unique blob prefix 2025-04-18 12:44:17 -04:00
type_bit.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_bit.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
type_bit_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_bit_innodb.test
type_blob.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
type_blob.test Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
type_bool.result MDEV-35135 Assertion `!is_cond()' failed in Item_bool_func::val_int / do_select 2024-10-14 09:36:17 +02:00
type_bool.test MDEV-35135 Assertion `!is_cond()' failed in Item_bool_func::val_int / do_select 2024-10-14 09:36:17 +02:00
type_char.result MDEV-34295 CAST(char_col AS DOUBLE) prints redundant spaces in a warning 2024-06-04 15:34:14 +04:00
type_char.test MDEV-34295 CAST(char_col AS DOUBLE) prints redundant spaces in a warning 2024-06-04 15:34:14 +04:00
type_date.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_date.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
type_date_round.result
type_date_round.test
type_datetime.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
type_datetime.test MDEV-34123 CONCAT Function Returns Unexpected Empty Set in Query 2024-10-08 11:58:46 +02:00
type_datetime_hires.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_datetime_hires.test
type_datetime_round.result
type_datetime_round.test
type_decimal.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
type_decimal.test Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
type_enum.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_enum.test Merge 11.4 into 11.6 2024-10-03 16:09:56 +03:00
type_float.result Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
type_float.test Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
type_geometry_mix_int.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_geometry_mix_int.test
type_hex_hybrid.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_hex_hybrid.test
type_int.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
type_int.test MDEV-34123 CONCAT Function Returns Unexpected Empty Set in Query 2024-10-08 11:58:46 +02:00
type_interval.result
type_interval.test
type_json.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_json.test
type_nchar.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_nchar.test
type_newdecimal-big.result
type_newdecimal-big.test
type_newdecimal.result Merge 11.4 into 11.7 2024-12-02 17:51:17 +02:00
type_newdecimal.test Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
type_num.result
type_num.test
type_num_innodb.result MDEV-35000: dict_table_close() breaks STATS_AUTO_RECALC 2025-02-28 09:00:16 +02:00
type_num_innodb.test Additional tests for MDEV-28345 ASAN: use-after-poison or unknown-crash in my_strtod_int from charset_info_st::strntod or test_if_number 2024-07-18 08:17:53 +04:00
type_ranges.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_ranges.test
type_row.result
type_row.test
type_set.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
type_set.test Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
type_temporal_innodb.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
type_temporal_innodb.test
type_temporal_mariadb53.result
type_temporal_mariadb53.test
type_temporal_mysql56.result
type_temporal_mysql56.test
type_temporal_mysql56_debug.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_temporal_mysql56_debug.test
type_time.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
type_time.test MDEV-34123 CONCAT Function Returns Unexpected Empty Set in Query 2024-10-08 11:58:46 +02:00
type_time_6065.result
type_time_6065.test
type_time_hires.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_time_hires.test
type_time_round.result
type_time_round.test
type_timestamp,32bit.rdiff MDEV-15751 CURRENT_TIMESTAMP should return a TIMESTAMP [WITH TIME ZONE?] 2024-10-19 22:48:23 +02:00
type_timestamp.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
type_timestamp.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
type_timestamp_hires.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_timestamp_hires.test
type_timestamp_round.result MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
type_timestamp_round.test MDEV-32188 make TIMESTAMP use whole 32-bit unsigned range 2024-05-27 12:39:02 +02:00
type_uint.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_uint.test
type_varbinary.result MDEV-36235 Incorrect result for BETWEEN over unique blob prefix 2025-04-18 12:44:17 -04:00
type_varbinary.test MDEV-36235 Incorrect result for BETWEEN over unique blob prefix 2025-04-18 12:44:17 -04:00
type_varchar.opt
type_varchar.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
type_varchar.test MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
type_varchar_mysql41.result MDEV-35245 SHOW CREATE TABLE produces unusable statement for vector fields with constant default value 2024-11-05 14:00:52 -08:00
type_varchar_mysql41.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_year.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
type_year.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
udf.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
udf.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
udf_debug_sync.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
udf_debug_sync.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
udf_notembedded.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
udf_notembedded.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
udf_query_cache.result Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
udf_query_cache.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
udf_skip_grants-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
udf_skip_grants.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
udf_skip_grants.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
union-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
union.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
union.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
union_crash-714.result Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
union_crash-714.test Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
union_innodb.result
union_innodb.test Merge branch '10.2' into 10.3 2022-02-10 20:23:56 +01:00
unique.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
unique.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
unsafe_binlog_innodb.result MDEV-21921 Make transaction_isolation and transaction_read_only into system variables 2023-04-12 11:04:29 +10:00
unsafe_binlog_innodb.test MDEV-21921 Make transaction_isolation and transaction_read_only into system variables 2023-04-12 11:04:29 +10:00
unusable_keys_joins.inc MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
unusable_keys_literals.inc MDEV-32203 Raise notes when an index cannot be used on data type mismatch 2023-10-03 08:25:31 +03:00
update.result MDEV-35662 Optimize subqueries before sending EXPLAIN output in single table update 2025-04-16 11:19:49 +10:00
update.test MDEV-35662 Optimize subqueries before sending EXPLAIN output in single table update 2025-04-16 11:19:49 +10:00
update_ignore_216.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
update_ignore_216.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
update_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
update_innodb.test MDEV-33533: Crash at execution of DELETE when trying to use rowid filter 2024-05-13 09:52:39 +02:00
update_single_to_multi.result Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
update_single_to_multi.test Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
update_use_source.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
update_use_source.test MDEV-29390: Improve coverage for UPDATE and DELETE statements in MTR test suites 2023-03-15 17:35:22 -07:00
upgrade.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
upgrade.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
upgrade.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
upgrade_geometrycolumn_procedure_definer.result MDEV-24486 Rename the view sys.table_privileges to sys.privileges_by_table_by_level 2023-12-08 19:29:02 +03:00
upgrade_geometrycolumn_procedure_definer.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
upgrade_MDEV-19650.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
upgrade_MDEV-19650.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
upgrade_MDEV-23102-1.result MDEV-24486 Rename the view sys.table_privileges to sys.privileges_by_table_by_level 2023-12-08 19:29:02 +03:00
upgrade_MDEV-23102-1.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
upgrade_MDEV-23102-2.result MDEV-24486 Rename the view sys.table_privileges to sys.privileges_by_table_by_level 2023-12-08 19:29:02 +03:00
upgrade_MDEV-23102-2.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
upgrade_mdev_24363.result MDEV-24486 Rename the view sys.table_privileges to sys.privileges_by_table_by_level 2023-12-08 19:29:02 +03:00
upgrade_mdev_24363.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
user_limits-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
user_limits.result MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
user_limits.test MDEV-5215 prerequisite: remove test and test_* database hacks in the test suite 2022-11-01 16:33:00 +01:00
user_var-binlog.result Merge 10.10 into 10.11 2023-03-29 16:53:37 +03:00
user_var-binlog.test Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
user_var.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
user_var.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
userstat-badlogin-4824.result
userstat-badlogin-4824.test Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
userstat.opt MDEV-33151 Add more columns to TABLE_STATISTICS and USER STATS 2024-05-27 12:39:04 +02:00
userstat.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
userstat.test Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
varbinary.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
varbinary.test
variables-master.opt Merge branch '10.2' into 10.3 2019-09-03 13:17:32 +03:00
variables-notembedded.opt MDEV-31811 deprecate old_mode values 2023-09-30 14:43:12 +02:00
variables-notembedded.result MDEV-31811 deprecate old_mode values 2023-09-30 14:43:12 +02:00
variables-notembedded.test MDEV-31811 deprecate old_mode values 2023-09-30 14:43:12 +02:00
variables.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
variables.test Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
variables_community.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
variables_community.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
vector,aria.rdiff MDEV-35292 - ALTER TABLE re-creating vector key is no-op with non-copying alter algorithms (default) 2025-02-06 21:47:01 +01:00
vector,myisam.rdiff MDEV-35292 - ALTER TABLE re-creating vector key is no-op with non-copying alter algorithms (default) 2025-02-06 21:47:01 +01:00
vector.combinations MDEV-34919 Aria crashes with high-level (vector) indexes 2024-11-05 14:00:52 -08:00
vector.result MDEV-35292 - ALTER TABLE re-creating vector key is no-op with non-copying alter algorithms (default) 2025-02-06 21:47:01 +01:00
vector.test MDEV-35146 Vector-related error messages worth improving when possible 2025-02-10 12:22:05 +01:00
vector2.result MDEV-35309 ALTER performs vector truncation without WARN_DATA_TRUNCATED or similar warnings/errors 2025-04-18 09:41:24 +02:00
vector2.test MDEV-35309 ALTER performs vector truncation without WARN_DATA_TRUNCATED or similar warnings/errors 2025-04-18 09:41:24 +02:00
vector2_notembedded.result Merge branch '11.7' into 11.8 2025-02-11 20:29:43 +01:00
vector2_notembedded.test MDEV-35221 Vector values do not survive mariadb-dump / restore 2025-02-10 12:22:05 +01:00
vector_aria.result MDEV-36256 Crash on disconnect when dropped Aria table with vector key under lock 2025-04-18 09:41:23 +02:00
vector_aria.test MDEV-36256 Crash on disconnect when dropped Aria table with vector key under lock 2025-04-18 09:41:23 +02:00
vector_debug.result MDEV-35205 Server crash in online alter upon concurrent ALTER and DML on table with vector field 2024-11-05 14:00:52 -08:00
vector_debug.test MDEV-35205 Server crash in online alter upon concurrent ALTER and DML on table with vector field 2024-11-05 14:00:52 -08:00
vector_funcs.result fix incorrect merge 15700f54c2 2025-04-18 09:41:24 +02:00
vector_funcs.test MDEV-35919 Server crashes in Item_func_vec_distance::fix_length_and_dec upon reading from I_S table 2025-02-11 20:31:42 +01:00
vector_innodb.result MDEV-36188 assert with vector index and very long PK 2025-04-18 09:41:23 +02:00
vector_innodb.test MDEV-36188 assert with vector index and very long PK 2025-04-18 09:41:23 +02:00
vector_partition.result MDEV-33410 VECTOR data type 2024-11-05 14:00:51 -08:00
vector_partition.test MDEV-33410 VECTOR data type 2024-11-05 14:00:51 -08:00
vector_symlink.result MDEV-35152 DATA/INDEX DIRECTORY options are ignored for vector index 2025-04-18 09:41:24 +02:00
vector_symlink.test MDEV-35152 DATA/INDEX DIRECTORY options are ignored for vector index 2025-04-18 09:41:24 +02:00
vector_utf16.result cleanup: move test w/ character_set_results=utf16 into separate file 2025-01-21 12:18:56 +01:00
vector_utf16.test cleanup: move test w/ character_set_results=utf16 into separate file 2025-01-21 12:18:56 +01:00
view.result Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
view.test Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
view_alias.result Merge branch '10.2' into 10.3 2019-07-26 22:42:35 +02:00
view_alias.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
view_debug.result MDEV-29060 main.view_debug fix 2022-07-13 03:56:45 +03:00
view_debug.test MDEV-29060 main.view_debug fix 2022-07-13 03:56:45 +03:00
view_grant.result Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
view_grant.test Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
wait_timeout.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
wait_timeout.test CC 3.1 update 2022-07-29 13:39:12 +02:00
warnings-master.opt Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
warnings.result MDEV-29041 Redundant truncation warning on CAST(string_column AS DECIMAL) 2022-07-06 15:05:25 +04:00
warnings.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
warnings_debug.result Aria will now register it's transactions 2020-05-23 12:29:10 +03:00
warnings_debug.test Aria will now register it's transactions 2020-05-23 12:29:10 +03:00
warnings_engine_disabled.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
warnings_engine_disabled.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
win.result Merge branch '11.7' into 11.8 2025-02-11 20:29:43 +01:00
win.test Merge branch '10.11 into 11.4 2025-01-30 12:01:11 +01:00
win_as_arg_to_aggregate_func.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
win_as_arg_to_aggregate_func.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
win_avg.result Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
win_avg.test Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
win_big-mdev-10092.result Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
win_big-mdev-10092.test Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
win_big-mdev-11697.result Merge branch '10.5' into 10.6 2023-11-08 15:57:05 +01:00
win_big-mdev-11697.test Merge branch '10.5' into 10.6 2023-11-08 15:57:05 +01:00
win_big.result Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
win_big.test Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
win_bit.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
win_bit.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
win_empty_over.result MDEV-30032: EXPLAIN FORMAT=JSON output: part #2: print 'loops'. 2023-02-03 11:22:17 +03:00
win_empty_over.test MDEV-30032: EXPLAIN FORMAT=JSON output: print costs 2023-02-03 11:01:24 +03:00
win_first_last_value.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
win_first_last_value.test MDEV-27691: make working view-protocol 2022-09-23 17:36:20 +07:00
win_i_s.result
win_i_s.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
win_insert_select.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
win_insert_select.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
win_lead_lag.result Merge 10.2 into 10.3 2018-08-28 12:22:56 +03:00
win_lead_lag.test Merge 10.2 into 10.3 2018-08-28 12:22:56 +03:00
win_min_max.result Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
win_min_max.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
win_nth_value.result Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
win_nth_value.test Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
win_ntile.result Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
win_ntile.test Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
win_orderby.result Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
win_orderby.test Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
win_percent_cume.result Merge 10.2 into 10.3 2018-11-06 09:40:39 +02:00
win_percent_cume.test Merge 10.2 into 10.3 2018-11-06 09:40:39 +02:00
win_percentile.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
win_percentile.test Removing MDEV-27871 from tastcases because it is not a bug 2024-06-28 16:45:50 +07:00
win_rank.result Merge 10.2 into 10.3 2018-11-06 09:40:39 +02:00
win_rank.test Merge 10.2 into 10.3 2018-11-06 09:40:39 +02:00
win_std.result Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
win_std.test Removing MDEV-27871 because it is not a bug 2023-10-13 14:09:22 +02:00
win_sum.result MDEV-32411 Item_sum arguments incorrectly reset to temp table fields which causes crash 2025-01-09 11:35:09 +07:00
win_sum.test MDEV-32411 Item_sum arguments incorrectly reset to temp table fields which causes crash 2025-01-09 11:35:09 +07:00
windows.result consistent error messages, no <angle quoting> 2025-04-18 09:41:23 +02:00
windows.test Create 'main' test directory and move 't' and 'r' there 2018-03-29 13:59:44 +03:00
windows_debug.result MDEV-30162 Fix occasional "Permission denied" on Windows caused by buggy 3rd party 2022-12-07 14:26:10 +01:00
windows_debug.test MDEV-30162 Fix occasional "Permission denied" on Windows caused by buggy 3rd party 2022-12-07 14:26:10 +01:00
winservice.inc MDEV-32574 main.winservice_basic sporadically fails on buildbot 2023-10-25 14:34:43 +02:00
winservice_basic.result MDEV-26715 Fix mysql_install_db_win tests. 2022-11-08 14:58:48 +01:00
winservice_basic.test MDEV-26713 Add test for mysql_install_db creating service, with i18 2021-12-15 19:13:57 +01:00
winservice_i18n.result MDEV-26715 Fix mysql_install_db_win tests. 2022-11-08 14:58:48 +01:00
winservice_i18n.test MDEV-26713 Add test for mysql_install_db creating service, with i18 2021-12-15 19:13:57 +01:00
wl4435_generated.inc MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
wolfssl.opt MDEV-22221: MariaDB with WolfSSL doesn't support AES-GCM cipher for SSL 2021-06-09 15:44:55 +02:00
wolfssl.result MDEV-22221: MariaDB with WolfSSL doesn't support AES-GCM cipher for SSL 2021-07-16 19:29:38 +02:00
wolfssl.test MDEV-22221: MariaDB with WolfSSL doesn't support AES-GCM cipher for SSL 2021-06-09 15:44:55 +02:00
xa.result Revert "MDEV-35019 Provide a way to enable "rollback XA on disconnect" behavior we had before 10.5.2" 2024-10-16 13:23:47 +02:00
xa.test MDEV-24035 Failing assertion: UT_LIST_GET_LEN(lock.trx_locks) == 0 causing disruption and replication failure 2024-12-12 18:02:00 +02:00
xa_binlog.result Aria will now register it's transactions 2020-05-23 12:29:10 +03:00
xa_binlog.test Aria will now register it's transactions 2020-05-23 12:29:10 +03:00
xa_prepared_binlog_off-master.opt MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
xa_prepared_binlog_off.result MDEV-515 Reduce InnoDB undo logging for insert into empty table 2021-01-25 18:41:27 +02:00
xa_prepared_binlog_off.test MDEV-27691: make working view-protocol 2022-09-26 10:25:41 +07:00
xa_sync.result MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
xa_sync.test MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
xml.result MDEV-36565 Assertion `src != ((void *)0)' failed in my_casedn_8bit 2025-04-18 14:54:48 +04:00
xml.test MDEV-36565 Assertion `src != ((void *)0)' failed in my_casedn_8bit 2025-04-18 14:54:48 +04:00
xtradb_mrr.result MDEV-34189 Unexpected error on WHERE inet6col 2025-01-29 09:08:19 +04:00
xtradb_mrr.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00