mariadb/mysql-test/suite/rpl/t
Nikita Malyavin 83aa4cd5ef MDEV-35915 Implement Global temporary tables
Global temporary table (GTT) is a table with globally defined metadata,
but per-session data.

That is, the life duration of this data is limited with session
duration. Here we have two options:

1. ON COMMIT DELETE ROWS: a default option. The life duration of data is
transaction duration.
2. ON COMMIT PRESERVE ROWS: The life duration of data is session
duration.

# Implementation

The implementation consists of the following fundamental parts.

## Part 1: CREATE TABLE + frm format

1. Store GLOBAL TEMPORARY and ON COMMIT bits in
   create_info->table_options
2. Store higher word of create_info->table_options in frm header
3. Also disallow ON COMMIT keyword for (local) temporary tables

As a result, the bits will be available in share->db_create_options.

New Table_type enum element: TABLE_TYPE_GLOBAL_TEMPORARY (datadict.h)

## Part 2: open_table: a local data table is created on demand

On open, a session-local temporary table copy is created from a global
TABLE_SHARE. Let us refer to the former as "local data table of GTT",
and the latter as "global metadata table of GTT".

There is a number of cases, when a global metadata table is opened
instead, like ALTER, DROP, SHOW CREATE

A local data table holds:

1. A reference to that share, and holds the increased
tdc reference count.
2. An explicit MDL lock to the duration of local copy's
existence.

While at least one local data table exists
(2) guarantees that ALTER, DROP or RENAME will not happen.
(1) guarantees that a global metadata table will not be flushed

At an implementation level, a local data table is a temporary table,
invisible for a user and augmented with (1) and (2).

The reference and lock are released upon dropping this local data table,
which happens due to:
a) TRUNCATE TABLE
b) Connection close
c) If ON COMMIT DELETE ROWS is used, then on transaction commit/rollback

## Part 3: ALTER, DROP, RENAME

These operations always open a real global temporary table.

ALTER, RENAME and DROP TABLE require all local data tables to be
destroyed, thus, having no references to a modified/deleted table.
For that, they:
1. acquire an EXCLUSIVE MDL lock. To match oracle behavior,
lock_wait_timeout is 0 in ALTER TABLE.
2. Check that there is no matching local temporary table in the same
connection (which is not guaranteed by 1)

## Part 4 ON COMMIT DELETE ROWS

This clause is assumed by default, i.e. it is implicit.

When ON COMMIT DELETE ROWS, the local data table is dropped on
commit/rollback.

On table open, global_temporary_tables handlerton is injected,
implementing this behavior.

# Limitations

The following is forbidden for GTT:
system versioning
partitioning
fk
ONLINE ALTER
CREATE GLOBAL TEMPORARY under LOCK TABLES
FLUSH TABLE on Global temporary table is no-op for now

# Refactorings, details

1. Extract drop_tmp_table_share (temporary_tables.cc)
2. Extract THD::open_temporary_table_impl (temporary_tables.cc)
3. information_schema support:
 x) "GLOBAL TEMPORARY" type is show in information_schema.tables
 y) an artifical temporary table is hidden from SHOW TABLE STATUS

4. VIEWs are supported.
5. AS SELECT support

 x) Made in Oracle style, so that the data is only inserted in the
 session that creates GTT
 y) ON COMMIT DELETE ROWS inserts the data for real, and then deletes
 the data table on implicit commit

6. CREATE TABLE ... LIKE is supported.

7. Replication support
 x) Set share->table_creation_was_logged to 0 to make the table ignored
 for replication.
 y) Statements with GTT involved will be logged in Row-based style
 (RBR)
 z) Global temporary table creation and alter/drop will be logged.
2025-09-12 17:17:38 +02:00
..
circular_serverid0.cnf Fix for MDEV-9670 server_id mysteriously set to 0 2017-07-02 19:47:30 +03:00
circular_serverid0.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
create_or_replace.inc MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
create_or_replace2.test Revert MDEV-25292 Atomic CREATE OR REPLACE TABLE 2022-10-27 23:13:41 +02:00
create_or_replace_mix.cnf Replication changes for CREATE OR REPLACE TABLE 2014-02-05 19:01:59 +02:00
create_or_replace_mix.test Replication changes for CREATE OR REPLACE TABLE 2014-02-05 19:01:59 +02:00
create_or_replace_mix2.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
create_or_replace_row.cnf Replication changes for CREATE OR REPLACE TABLE 2014-02-05 19:01:59 +02:00
create_or_replace_row.test Replication changes for CREATE OR REPLACE TABLE 2014-02-05 19:01:59 +02:00
create_or_replace_statement.cnf Replication changes for CREATE OR REPLACE TABLE 2014-02-05 19:01:59 +02:00
create_or_replace_statement.test Replication changes for CREATE OR REPLACE TABLE 2014-02-05 19:01:59 +02:00
create_select.cnf Fixed MDEV-8428: Mangled DML statements on 2nd level slave when enabling binlog checksums 2015-07-26 14:32:45 +03:00
create_select.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
failed_create_view-6409.test MDEV-6409 CREATE VIEW replication problem if error occurs in mysql_register_view 2014-07-23 12:01:05 +02:00
global_temporary_table.test MDEV-35915 Implement Global temporary tables 2025-09-12 17:17:38 +02:00
grant_replication_slave.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
ignore_table_autoinc-9737.test MDEV-9737 Duplicate error in replication with slave triggers and auto increment 2016-03-22 10:53:28 +01:00
kill_hard-6290.test MDEV-6290 Crash in KILL HARD QUERY USER x@y when slave threads are running 2014-07-23 19:36:15 +02:00
kill_race_condition.test MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
last_insert_id.cnf Fixed MySQL bug #69861 LAST_INSERT_ID is replicated incorrectly if replication filters are used 2013-08-27 19:18:04 +03:00
last_insert_id.test Fixed MySQL bug #69861 LAST_INSERT_ID is replicated incorrectly if replication filters are used 2013-08-27 19:18:04 +03:00
master_last_event_time.inc MDEV-34765: rpl.master_last_event_time_stmt fails with Result Length Mismatch 2024-08-22 20:25:10 -06:00
master_last_event_time_row.cnf MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
master_last_event_time_row.test MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
master_last_event_time_stmt.cnf MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
master_last_event_time_stmt.test MDEV-33856: Alternative Replication Lag Representation via Received/Executed Master Binlog Event Timestamps 2024-07-25 08:57:27 -06:00
max_binlog_total_size-master.opt MDEV-31404 Implement binlog_space_limit 2024-02-14 15:02:21 +01:00
max_binlog_total_size.test MDEV-31404 post-push for rpl.max_binlog_total_size 2024-04-30 14:00:19 +03:00
mdev-31448_kill_ooo_finish_optimistic.test Merge branch '10.5' into 10.6 2023-12-17 11:20:43 +01:00
mdev_17588-slave.opt MDEV-17588 replicate-do filters cause errors when creating filtered-out tables on master with syntax unsupported on slave 2019-07-10 11:51:43 +05:30
mdev_17588.test MDEV-20137 rpl.mdev_17588 fails in buildbot with "Table doesn't exist" 2019-09-04 17:52:43 +05:30
mdev_24667.cnf MDEV-24667 LOAD DATA INFILE on temporary table not written to slave binlog 2022-03-25 10:49:48 +02:00
mdev_24667.test MDEV-24667 LOAD DATA INFILE on temporary table not written to slave binlog 2022-03-25 10:49:48 +02:00
myisam_external_lock-slave.opt MDEV-6871 Multi-value insert on MyISAM table that makes slaves crash (when using --skip-external-locking=0) 2014-12-15 11:16:33 +02:00
myisam_external_lock.test MDEV-6871 Multi-value insert on MyISAM table that makes slaves crash (when using --skip-external-locking=0) 2014-12-15 11:16:33 +02:00
mysql-wsrep#110-2.test Fix for some failing tests. 2015-11-16 12:39:56 -05:00
parallel_backup.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
parallel_backup_lsu_off-slave.opt MDEV-30423 Deadlock on Replica during BACKUP STAGE BLOCK_COMMIT on XA transactions 2023-01-23 19:01:48 +02:00
parallel_backup_lsu_off.test MDEV-30423 Deadlock on Replica during BACKUP STAGE BLOCK_COMMIT on XA transactions 2023-01-23 19:01:48 +02:00
parallel_backup_slave_binlog_off-slave.opt MDEV-30423 Deadlock on Replica during BACKUP STAGE BLOCK_COMMIT on XA transactions 2023-01-23 19:01:48 +02:00
parallel_backup_slave_binlog_off.test MDEV-30423 Deadlock on Replica during BACKUP STAGE BLOCK_COMMIT on XA transactions 2023-01-23 19:01:48 +02:00
parallel_backup_xa.inc MDEV-30676 rpl.parallel_backup* tests sometimes fail 2024-04-15 15:45:03 +10:00
parallel_backup_xa_debug.test Fix sporadic failure of rpl.parallel_backup_xa_debug 2025-03-13 18:58:12 +01:00
password_expiration.test MDEV-7597 Expiration of user passwords 2019-02-21 15:04:03 +01:00
purge_binlog.test Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
rename.test MDEV-16229 Replication aborts with ER_VIEW_SELECT_TMPTABLE after half-failed RENAME 2018-05-22 23:05:48 +03:00
replace.test Added test case for bug in replace with replication that existed in MySQL 5.1: 2013-02-28 16:47:03 +02:00
rpl_000010-slave.opt after merge changes: 2011-12-12 23:58:40 +01:00
rpl_000010.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_000011-slave.opt Fixed buildbot issues 2014-03-18 16:26:02 +02:00
rpl_000011.test MDEV-16239 Many test in rpl suite fails 2019-10-08 13:34:25 +05:30
rpl_000013.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_000017.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01:00
rpl_15867.test MDEV-16192 Table 't' is specified twice, both as a target for 'CREATE' and... 2018-07-18 20:58:59 +05:30
rpl_15919-slave.opt MDEV-15919 lower_case_table_names does not behave as expected(nor... 2018-10-17 10:46:20 +05:30
rpl_15919.test MDEV-15919 lower_case_table_names does not behave as expected 2018-10-29 21:44:38 +01:00
rpl_alter.test MDEV-8432 Slave cannot replicate signed integer-type values with high bit set to 1 2015-07-17 00:06:27 +03:00
rpl_alter_db.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_alter_extra_persistent.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_alter_innodb.test rename rpl/rpl_alter_instant -> rpl/rpl_alter_innodb 2023-08-15 10:16:12 +02:00
rpl_alter_online_debug.test MDEV-31804 Assertion `thd->m_transaction_psi == __null' fails 2023-08-15 14:00:28 +02:00
rpl_alter_rollback.test MDEV-11675. Convert the new session var to bool type and test changes 2022-01-31 22:57:39 +02:00
rpl_auditing.test MDEV-33393 audit plugin do not report user did the action.. 2024-02-14 00:02:29 +04:00
rpl_auto_increment-master.opt
rpl_auto_increment-slave.opt
rpl_auto_increment.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_auto_increment_11932.test BUG#11758263 50440: MARK UNORDERED UPDATE WITH AUTOINC UNSAFE 2012-02-09 23:28:33 +05:30
rpl_auto_increment_bug33029.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_auto_increment_bug45679.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
rpl_auto_increment_update_failure.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_autogen_query_multi_byte_char.test Bug#21205695 DROP TABLE MAY CAUSE SLAVES TO BREAK 2015-12-01 15:38:11 +05:30
rpl_begin_commit_rollback-master.opt
rpl_begin_commit_rollback-slave.opt
rpl_begin_commit_rollback.test Merge branch '10.1' into 10.2 2017-09-22 02:27:00 +02:00
rpl_binlog_cache_disk_full_loaddata.test MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
rpl_binlog_cache_disk_full_row.test MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
rpl_binlog_commit_by_rotate.test MDEV-32014 Rename binlog cache temporary file to binlog file 2024-10-17 07:53:59 -06:00
rpl_binlog_compress.test test suite for compressed binlog event 2016-10-19 20:20:47 +02:00
rpl_binlog_corruption.test merge with 5.3 2011-10-19 21:45:18 +02:00
rpl_binlog_dump_slave_gtid_state_info.test Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
rpl_binlog_dup_entry.test MDEV-19158: MariaDB 10.2.22 is writing duplicate entries into binary log 2019-05-14 16:06:55 +05:30
rpl_binlog_errors-master.opt
rpl_binlog_errors.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_binlog_grant.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_binlog_index.test MDEV-30221: Move environmental macros to before master-slave 2023-04-28 20:06:02 +00:00
rpl_binlog_rollback_cleanup.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_bit.test MDEV-34 delete storage/ndb and sql/*ndb* (and collateral changes) 2014-10-11 18:53:06 +02:00
rpl_bit_npk.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_blackhole.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_blackhole_row_annotate-master.opt MDEV-11094: Blackhole table updates on slave fail when row annotation is enabled 2019-05-29 15:18:52 +05:30
rpl_blackhole_row_annotate-slave.opt MDEV-11094: Blackhole table updates on slave fail when row annotation is enabled 2019-05-29 15:18:52 +05:30
rpl_blackhole_row_annotate.test MDEV-4989: Support for GTID in mysqlbinlog 2022-01-26 14:17:21 -07:00
rpl_bug26395.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
rpl_bug31076.test Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
rpl_bug33931.test MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_bug37426.test rpl tests: move "include/master-slave.inc" down to be after all possible 2014-03-24 20:01:45 +01:00
rpl_bug38694-slave.opt rename debug variable to debug_dbug, to make test pass in release builds 2011-12-15 22:07:58 +01:00
rpl_bug38694.test Merge with MySQL 5.1.55 2011-02-20 18:51:43 +02:00
rpl_bug41902.test MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_cant_read_event_incident.test Merge 10.9 into 10.10 2023-04-14 12:24:14 +03:00
rpl_change_master.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_change_master_demote.test MDEV-34554: rpl_change_master_demote sporadically fails on buildbot 2024-07-11 14:45:12 -06:00
rpl_change_master_find_log_pos_err.test MDEV-25284: Assertion `info->type == READ_CACHE || info->type == WRITE_CACHE' failed 2021-10-18 10:43:51 -06:00
rpl_charset.test Renaming a few mysql-test/suite/rpl/include/*.test files into *.inc 2024-07-09 08:46:40 +04:00
rpl_charset_sjis.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_checksum-master.opt Backport MySQL WL#2540 into MariaDB. 2011-05-03 14:01:11 +02:00
rpl_checksum.test Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
rpl_checksum_cache.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_circular_for_4_hosts.cnf 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_circular_for_4_hosts.test MDEV-515 Reduce InnoDB undo logging for insert into empty table 2021-01-25 18:41:27 +02:00
rpl_circular_semi_sync.cnf MDEV-27760 event may non stop replicate in circular semisync setup 2022-03-22 19:20:19 +02:00
rpl_circular_semi_sync.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_colSize.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_commit_after_flush.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_concurrency_error-master.opt
rpl_concurrency_error.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_conditional_comments.test Merge branch '5.5' into 10.1 2020-04-30 17:36:41 +02:00
rpl_connection.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_corruption-master.opt Backport MySQL WL#2540 into MariaDB. 2011-05-03 14:01:11 +02:00
rpl_corruption-slave.opt Backport MySQL WL#2540 into MariaDB. 2011-05-03 14:01:11 +02:00
rpl_corruption.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
rpl_create_database-master.opt
rpl_create_database-slave.opt
rpl_create_database.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_create_drop_db.test MDEV-7280 DATABASE: CREATE OR REPLACE 2014-12-10 08:19:19 +04:00
rpl_create_drop_event.test Fix sporadic test failure in rpl.rpl_create_drop_event 2024-08-26 14:39:24 +02:00
rpl_create_drop_function.test MDEV-7283 UDF: CREATE OR REPLACE, CREATE IF NOT EXISTS, DROP IF EXISTS 2014-12-15 17:41:15 +04:00
rpl_create_drop_index.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_create_drop_procedure.test MDEV-7283 UDF: CREATE OR REPLACE, CREATE IF NOT EXISTS, DROP IF EXISTS 2014-12-15 17:41:15 +04:00
rpl_create_drop_role.test MDEV-7288 USER/ROLE: CREATE OR REPLACE, CREATE IF NOT EXISTS, DROP IF EXISTS 2015-01-13 11:50:33 +04:00
rpl_create_drop_trigger.test MDEV-7286 TRIGGER: CREATE OR REPLACE, CREATE IF NOT EXISTS 2015-03-04 09:52:01 +04:00
rpl_create_drop_udf.test Fixing test failures caused by the previous commits. 2014-12-16 15:31:25 +04:00
rpl_create_drop_user.test Use mysql.user.authentication_string for password 2018-10-31 16:06:16 +01:00
rpl_create_drop_view.test MDEV-23764 Slave crashes in ha_storage_engine_is_enabled upon rename of view 2020-10-24 11:15:51 +02:00
rpl_create_if_not_exists.test Implementation of MDEV-5491: CREATE OR REPLACE TABLE 2014-01-29 15:37:17 +02:00
rpl_create_or_replace_fail.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_create_select_row.test MDEV-35207 ignored error at binlogging by CREATE-TABLE-SELECT leads to assert 2025-04-03 19:00:02 +03:00
rpl_create_tmp_table_if_not_exists.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_create_xa_prepared.inc MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_critical_errors.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_csv.test MDEV-35233: RBR does not work with CSV tables 2024-12-17 17:34:29 +01:00
rpl_ctype_collate_implicit.test MDEV-30164 System variable for default collations 2023-07-17 14:56:17 +04:00
rpl_ctype_latin1.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_current_user.cnf BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_current_user.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_ddl-slave.opt
rpl_ddl.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_deadlock_innodb-slave.opt
rpl_deadlock_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_deadlock_show_slave_status.test Merge 10.5 into 10.6 2023-12-19 18:41:42 +02:00
rpl_default.test Use default character set for expressions 2016-06-30 11:43:02 +02:00
rpl_delayed_slave.combinations MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_delayed_slave.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_delayed_slave2.test MDEV-7145: Delayed replication. 2016-10-14 23:15:59 +02:00
rpl_delete_no_where.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_do_grant.test fix error messages 2025-05-02 13:56:25 +02:00
rpl_domain_id_filter.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_domain_id_filter_io_crash.test MDEV-14357: rpl.rpl_domain_id_filter_io_crash failed in buildbot with wrong result 2024-02-12 05:48:18 -07:00
rpl_domain_id_filter_master_crash.test Merge 10.5 into 10.6 2024-04-18 07:14:56 +03:00
rpl_domain_id_filter_parallel.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_domain_id_filter_restart.test MDEV-10684: rpl.rpl_domain_id_filter_restart fails in buildbot 2024-04-11 09:49:20 -06:00
rpl_drop.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_drop_db.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
rpl_drop_db_fail.test update tests to pass 2015-06-28 18:51:40 +02:00
rpl_drop_temp-slave.opt
rpl_drop_temp.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_drop_temp_table_invalid_lex.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_drop_view.test Change error message when using DROP VIEW on a non existing view from 2017-04-07 18:22:06 +04:00
rpl_dual_pos_advance.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_dump_request_retry_warning.test MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_EE_err.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_empty_master_host.test include/master-slave.inc must always be included last 2017-09-20 18:17:50 +02:00
rpl_empty_string_is_null.test MDEV-18918 SQL mode EMPTY_STRING_IS_NULL breaks RBR upon CREATE TABLE .. SELECT 2022-01-25 10:31:55 +04:00
rpl_err_ignoredtable-slave.opt
rpl_err_ignoredtable.test MDEV-34 delete storage/ndb and sql/*ndb* (and collateral changes) 2014-10-11 18:53:06 +02:00
rpl_events.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_extra_col_master_innodb.test Renaming a few mysql-test/suite/rpl/include/*.test files into *.inc 2024-07-09 08:46:40 +04:00
rpl_extra_col_master_myisam.test Renaming a few mysql-test/suite/rpl/include/*.test files into *.inc 2024-07-09 08:46:40 +04:00
rpl_extra_col_slave_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_extra_col_slave_minimal.test Fix recalculation of vcols in binlog_row_image=minimal 2023-08-15 10:16:11 +02:00
rpl_extra_col_slave_myisam.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_fail_register.test MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-16 10:41:11 +01:00
rpl_failed_drop_tbl_binlog.opt MDEV-20487: Fix a test 2019-10-28 21:28:21 +02:00
rpl_failed_optimize.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_filter_dbs_dynamic.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_filter_revoke_missing_user.test MDEV-28530: Revoking privileges from a non-existing user on a master breaks replication on the slave in the presence of replication filters 2022-09-03 13:04:44 +03:00
rpl_filter_set_var_missing_data.test MDEV-28294: set default role bypasses Replicate_Wild_Ignore_Table: mysql.% 2022-08-22 18:23:56 +03:00
rpl_filter_tables_dynamic.test Merge 10.1 into 10.2 2020-09-03 09:10:03 +03:00
rpl_filter_tables_not_exist-slave.opt
rpl_filter_tables_not_exist.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
rpl_filter_wild_tables_dynamic.test Merge 10.1 into 10.2 2020-09-03 09:10:03 +03:00
rpl_flush_logs-master.opt
rpl_flush_logs.test include/master-slave.inc must always be included last 2017-09-20 18:17:50 +02:00
rpl_flushlog_loop-master.opt Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_flushlog_loop-slave.opt Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_flushlog_loop.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_foreign_key_innodb.test MDEV-25530 Error 1451 on slave: Cannot delete or update a parent row: a foreign key constraint fails 2021-04-29 13:17:31 +02:00
rpl_free_items-slave.opt
rpl_free_items.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_from_mysql80.test MDEV-35806: Error in read_log_event() corrupts relay log writer, crashes server 2025-01-24 09:15:20 +00:00
rpl_function_defaults.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_geometry.test MDEV-30985 Replica stops with error on ALTER ONLINE with Geometry Types 2023-08-15 10:16:13 +02:00
rpl_get_lock.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_get_master_version_and_clock-slave.opt
rpl_get_master_version_and_clock.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_gis_user_var.test MDEV-27666 User variable not parsed as geometry variable in geometry function 2024-01-16 18:53:23 +04:00
rpl_grant.test Merge branch '10.1' into 10.2 2017-09-22 02:27:00 +02:00
rpl_gtid_basic.cnf MDEV-26: Global transaction ID. 2013-02-18 15:41:17 +01:00
rpl_gtid_basic.test MDEV-33045: Server crashes in Item_func_binlog_gtid_pos::val_str / Binary_string::c_ptr_safe 2023-12-19 12:08:53 +01:00
rpl_gtid_crash-master.opt mtr: aix - stack-trace is optional 2021-07-22 15:22:47 +10:00
rpl_gtid_crash-slave.opt Fix sporadic failures of rpl.rpl_gtid_crash 2025-03-15 11:15:36 +01:00
rpl_gtid_crash.test Merge 10.6 into 10.11 2025-03-27 08:01:47 +02:00
rpl_gtid_crash_myisam-master.opt mtr: aix - stack-trace is optional 2021-07-22 15:22:47 +10:00
rpl_gtid_crash_myisam.test MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_gtid_delete_domain.test MDEV-23103 rpl.rpl_gtid_delete_domain failed in buildbot 2020-11-04 13:23:06 +01:00
rpl_gtid_errorhandling.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_gtid_errorlog.test MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-28 19:10:42 +01:00
rpl_gtid_excess_initial_delay.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_gtid_glle_no_terminate.test MDEV-4991: GTID binlog indexing 2024-01-27 12:09:54 +01:00
rpl_gtid_grouping.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_gtid_header_valid.test MDEV-33672: 10.11 Fix for Two Phase Alter Flags 2024-04-24 13:19:36 +02:00
rpl_gtid_ignored.test MDEV-16421 Make system tables crash safe 2018-08-14 12:18:38 +03:00
rpl_gtid_index.test MDEV-4991: GTID binlog indexing 2024-01-27 12:09:54 +01:00
rpl_gtid_master_promote.cnf MDEV-26: Global transaction ID. 2013-05-15 19:52:21 +02:00
rpl_gtid_master_promote.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_gtid_mdev4473.cnf MDEV-4473: mysql_binlog_send() starts sending events from wrong GTID position in some master failover scenarios 2013-05-03 11:27:29 +02:00
rpl_gtid_mdev4473.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_gtid_mdev4474.cnf MDEV-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
rpl_gtid_mdev4474.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_gtid_mdev4484.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
rpl_gtid_mdev4485.cnf MDEV-4485: Master did not allow slave to connect from the very start (empty GTID pos) if GTIDs from other multi_source master was present 2013-05-29 11:41:25 +02:00
rpl_gtid_mdev4485.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_gtid_mdev4820.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_gtid_mdev9033.cnf Incorrect statements binlogged on slave with do_domain_ids=(...) 2015-11-18 02:11:20 -05:00
rpl_gtid_mdev9033.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_gtid_misc.test MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_gtid_nobinlog.cnf MDEV-26: Global transaction ID. 2013-03-18 15:09:36 +01:00
rpl_gtid_nobinlog.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_gtid_reconnect.test MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_gtid_slave_filtering.cnf MDEV-26632: multi source replication filters breaking GTID semantic 2023-12-11 12:04:49 +01:00
rpl_gtid_slave_filtering.test MDEV-26632: multi source replication filters breaking GTID semantic 2023-12-11 12:04:49 +01:00
rpl_gtid_sort.test MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_gtid_startpos.test Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
rpl_gtid_stop_start.cnf MDEV-26, Global transaction ID. 2013-04-09 11:46:38 +02:00
rpl_gtid_stop_start.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_gtid_strict.test Revert MDEV-25292 Atomic CREATE OR REPLACE TABLE 2022-10-27 23:13:41 +02:00
rpl_gtid_thread_id.test MDEV-7850: Extend GTID Binlog Events with Thread Id 2024-05-03 13:58:19 -06:00
rpl_gtid_until.test MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_gtid_until_before_after_gtids.test MDEV-27247: Add keywords "SQL_BEFORE_GTIDS" and "SQL_AFTER_GTIDS" for START SLAVE UNTIL 2023-10-23 06:40:05 -06:00
rpl_heartbeat.test Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
rpl_heartbeat_2slaves.cnf Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_heartbeat_2slaves.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_heartbeat_basic.cnf
rpl_heartbeat_basic.test Merge 10.6 into 10.11 2025-03-27 08:01:47 +02:00
rpl_heartbeat_debug.test MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_heartbeat_ssl.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_hrtime.test wl#173 - temporal types with sub-second resolution 2011-03-01 13:24:36 +01:00
rpl_hrtime_row.test wl#173 - temporal types with sub-second resolution 2011-03-01 13:24:36 +01:00
rpl_idempotency.test Merge branch '10.1' into 10.2 2018-12-30 18:30:29 +01:00
rpl_ignore_grant-slave.opt
rpl_ignore_grant.test reenable tests from engines/funcs 2021-03-10 09:12:57 +01:00
rpl_ignore_revoke-slave.opt
rpl_ignore_revoke.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_ignore_table-slave.opt
rpl_ignore_table.test MDEV-8334: Rename utf8 to utf8mb3 2021-05-19 06:48:36 +02:00
rpl_ignore_table_update-slave.opt
rpl_ignore_table_update.test reenable tests from engines/funcs 2021-03-10 09:12:57 +01:00
rpl_incident.test MDEV-30421 more tests cleaned up 2023-03-23 21:07:32 +03:00
rpl_incompatible_heartbeat.test MDEV-16146: MariaDB slave stops with following errors. 2021-04-30 20:34:31 +05:30
rpl_init_slave-slave.opt
rpl_init_slave.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_init_slave_errors.test MDEV-30421 more tests cleaned up 2023-03-23 21:07:32 +03:00
rpl_innodb-master.opt
rpl_innodb_bug28430-master.opt
rpl_innodb_bug28430-slave.opt
rpl_innodb_bug28430.test MDEV-16708: fixed test rpl_innodb_bug28430, failing with --ps 2021-06-18 18:03:26 +02:00
rpl_innodb_bug30888.opt MDEV-8849 rpl.rpl_innodb_bug30888 sporadically fails in buildbot with testcase timeout 2015-09-26 02:48:55 +03:00
rpl_innodb_bug30888.test MDEV-16708: fix in test failures(added --enable_prepared_warnings/--disable_prepared_warnings) 2021-06-17 19:30:24 +02:00
rpl_innodb_mixed_ddl.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_innodb_mixed_dml.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_insert.test include/master-slave.inc must always be included last 2017-09-20 18:17:50 +02:00
rpl_insert_delayed.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_insert_id.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_insert_id_pk.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_insert_ignore.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_invoked_features-master.opt
rpl_invoked_features.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_iodku.test MDEV-28310 Missing binlog data for INSERT .. ON DUPLICATE KEY UPDATE 2022-05-06 22:16:42 +03:00
rpl_ip_mix.cnf test.cnf files should !include default_my.cnf 2024-02-03 11:22:20 +01:00
rpl_ip_mix.test MDEV-16239 Many test in rpl suite fails 2019-10-08 13:34:25 +05:30
rpl_ip_mix2.cnf test.cnf files should !include default_my.cnf 2024-02-03 11:22:20 +01:00
rpl_ip_mix2.test MDEV-16239 Many test in rpl suite fails 2019-10-08 13:34:25 +05:30
rpl_ipv4_as_ipv6.cnf test.cnf files should !include default_my.cnf 2024-02-03 11:22:20 +01:00
rpl_ipv4_as_ipv6.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_ipv6.cnf test.cnf files should !include default_my.cnf 2024-02-03 11:22:20 +01:00
rpl_ipv6.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_killed_ddl-master.opt rename debug variable to debug_dbug, to make test pass in release builds 2011-12-15 22:07:58 +01:00
rpl_killed_ddl.test Adjusted more tests after the fix for mdev-9976. 2017-02-01 13:09:07 -08:00
rpl_known_bugs_detection-master.opt MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
rpl_known_bugs_detection.test MDEV-17614 INSERT on dup key update is replication unsafe 2019-08-09 19:36:56 +05:30
rpl_lcase_tblnames_rewrite_db-slave.opt MDEV-15919 lower_case_table_names does not behave as expected(nor... 2018-10-17 10:46:20 +05:30
rpl_lcase_tblnames_rewrite_db.test MDEV-30221: Move environmental macros to before master-slave 2023-04-28 20:06:02 +00:00
rpl_LD_INFILE.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_loaddata.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_loaddata_charset.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_loaddata_fatal-slave.opt MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
rpl_loaddata_fatal.test Instead of writing "Errcode" to the log for Slave errors, use "Internal MariaDB error code" 2013-05-03 01:54:47 +03:00
rpl_loaddata_local.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
rpl_loaddata_m-master.opt
rpl_loaddata_m.test Merge from mysql-5.1 to mysql-5.5 2013-03-27 11:59:40 +05:30
rpl_loaddata_map-master.opt Bug #11766769: 59959: SMALL VALUES OF --MAX-ALLOWED-PACKET 2011-03-25 12:57:27 +02:00
rpl_loaddata_map-slave.opt Bug #11766769: 59959: SMALL VALUES OF --MAX-ALLOWED-PACKET 2011-03-25 12:57:27 +02:00
rpl_loaddata_map.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
rpl_loaddata_s-slave.opt
rpl_loaddata_s.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_loaddata_simple.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_loaddata_symlink-master.opt
rpl_loaddata_symlink-master.sh
rpl_loaddata_symlink-slave.opt
rpl_loaddata_symlink-slave.sh
rpl_loaddata_symlink.test include/master-slave.inc must always be included last 2017-09-20 18:17:50 +02:00
rpl_loadfile.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
rpl_locale.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_log_pos.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_lost_events_on_rotate.test Fix build without either ENABLED_DEBUG_SYNC or DBUG_OFF 2022-09-23 17:37:52 +03:00
rpl_manual_change_index_file.test Merge branch '10.9' into 10.10 2023-08-05 20:34:09 +02:00
rpl_many_optimize.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_mariadb_slave_capability.test Merge branch '10.11' into 11.0 2024-02-01 18:57:08 +01:00
rpl_mark_optimize_tbl_ddl.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
rpl_master_pos_wait.test Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02:00
rpl_mdev-11092.opt MDEV-11092 :- Fix Previous commit of MDEV-11092 2017-05-19 13:02:45 +05:30
rpl_mdev-11092.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_mdev359.test Moved semisync from a plugin to normal server 2017-12-18 13:43:36 +02:00
rpl_mdev382.test MDEV-30221: Move environmental macros to before master-slave 2023-04-28 20:06:02 +00:00
rpl_mdev6020.test Merge 11.4 into 11.6 2024-09-04 10:38:25 +03:00
rpl_mdev6386-slave.opt MDEV-6386: Assertion `thd->transaction.stmt.is_empty() || thd->in_sub_stmt || (thd->state_flags & Open_tables_state::BACKUPS_AVAIL)' fails with parallel replication 2014-06-27 13:34:29 +02:00
rpl_mdev6386.test MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_mdev8193.test include/master-slave.inc must always be included last 2017-09-20 18:17:50 +02:00
rpl_mdev10863.test MDEV-16421 Make system tables crash safe 2018-08-14 12:18:38 +03:00
rpl_mdev12179.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
rpl_mdev13831.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_mdev33798.cnf MDEV-33798: ROW base optimistic deadlock with concurrent writes on same table 2024-05-02 21:07:45 +02:00
rpl_mdev33798.test Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
rpl_mdev_17614.test Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
rpl_memory_engine_truncate_on_restart.test MDEV-25607: Auto-generated DELETE from HEAP table can break replication 2024-07-05 12:00:09 -06:00
rpl_misc_functions-slave.sh
rpl_misc_functions.test cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
rpl_mix_found_rows.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
rpl_mixed2_drop_create_temp_table.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_mixed_binlog_max_cache_size.test Renaming a few mysql-test/suite/rpl/include/*.test files into *.inc 2024-07-09 08:46:40 +04:00
rpl_mixed_bit_pk.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_mixed_ddl_dml.test MySQL-5.5.35 merge 2014-01-22 15:29:36 +01:00
rpl_mixed_drop_create_temp_table.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_mixed_implicit_commit_binlog.test MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
rpl_mixed_mixing_engines.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_mixed_row_innodb-master.opt
rpl_multi_delete-slave.opt
rpl_multi_delete.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_multi_delete2-slave.opt
rpl_multi_delete2.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_multi_engine.test MDEV-3929 Add system variable explicit_defaults_for_timestamp for compatibility with MySQL 2015-09-22 14:01:54 +04:00
rpl_multi_update.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_multi_update2-slave.opt
rpl_multi_update2.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_multi_update3.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_multi_update4-slave.opt
rpl_multi_update4.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_mysql57_stm_temporal_round.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_mysql80_stm_temporal_round.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_mysql_manager_race_condition-slave.opt MDEV-26473: mysqld got exception 0xc0000005 (rpl_slave_state/rpl_load_gtid_slave_state) 2022-04-25 08:07:17 -06:00
rpl_mysql_manager_race_condition.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_mysql_upgrade.test MDEV-30498 Rename mysql_upgrade state file to mariadb_upgrade 2023-02-07 07:29:04 +00:00
rpl_mysqlbinlog_slave_consistency.test MDEV-20119: Implement the --do-domain-ids, --ignore-domain-ids, and --ignore-server-ids options for mysqlbinlog 2022-04-19 11:09:24 -06:00
rpl_mysqldump_gtid_slave_pos.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_name_const.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_non_direct_mixed_mixing_engines.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_non_direct_row_mixing_engines.test MDEV-31790 work-around: Add not_msan.inc 2023-07-28 11:27:16 +03:00
rpl_non_direct_stm_mixing_engines.test MDEV-31790 work-around: Add not_msan.inc 2023-07-28 11:27:16 +03:00
rpl_nondeterministic_functions.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_not_null_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_not_null_myisam.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_old_decimal.test MDEV-7268 Column of table cannot be converted from type 'decimal(0,?)' to type ' 'decimal(10,7)' 2015-06-09 12:05:06 +04:00
rpl_old_master.test Merge 10.6 into 10.11 2024-08-29 07:47:29 +03:00
rpl_old_master_29078-master.opt MDEV-29078 For old binary logs explicit_defaults_for_timestamp presumed to be OFF, server value ignored 2022-08-02 18:08:42 +02:00
rpl_old_master_29078.test MDEV-28632 Change default of explicit_defaults_for_timestamp to ON 2022-08-10 15:03:22 +02:00
rpl_optimize.test MDEV-34 delete storage/ndb and sql/*ndb* (and collateral changes) 2014-10-11 18:53:06 +02:00
rpl_packet-master.opt
rpl_packet-slave.opt BUG#12400221 - 60926: BINARY LOG EVENTS LARGER THAN MAX_ALLOWED_PACKET 2012-06-12 12:59:56 +05:30
rpl_packet.test MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_parallel2.test Revert "MDEV-13915: STOP SLAVE takes very long time on a busy system" 2023-06-06 08:11:38 -06:00
rpl_parallel_29322.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_parallel_analyze.test MDEV-30323 Some DDLs like ANALYZE can complete on parallel slave out of order 2023-01-24 20:18:03 +02:00
rpl_parallel_analyze_table_hang.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_autoinc.test MDEV-31482: Lock wait timeout with INSERT-SELECT, autoinc, and statement-based replication 2023-08-15 16:40:02 +02:00
rpl_parallel_charset.test MDEV-6156: Parallel replication incorrectly caches charset between worker threads 2014-04-23 16:06:06 +02:00
rpl_parallel_conflicts.test MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_deadlock_corrupt_binlog.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_deadlock_victim.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
rpl_parallel_deadlock_victim2.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_parallel_domain.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_domain_slave_single_grp.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_parallel_free_deferred_event.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_ftwrl.test MDEV-31509: Lost data with FTWRL and STOP SLAVE 2023-07-12 09:41:32 +02:00
rpl_parallel_gco_wait_kill.test Merge branch '10.5' into 10.6 2025-01-29 11:17:38 +01:00
rpl_parallel_gtid_slave_pos_update_fail.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_ignore_error_on_rotate.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_ignored_errors.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_parallel_incorrect_relay_pos.test MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_innodb_lock_conflict.test Fix sporadic failure of rpl.rpl_parallel_innodb_lock_conflict 2025-02-19 11:28:47 +00:00
rpl_parallel_kill.test MDEV-31448: Killing a replica thread awaiting its GCO can hang/crash a parallel replica 2023-07-12 09:41:32 +02:00
rpl_parallel_mdev6589.test MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_parallel_missed_error_handling.test Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
rpl_parallel_mode.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_multi_domain_xa.test Merge 10.6 to 10.11 2024-05-07 08:45:31 +02:00
rpl_parallel_multilevel.cnf MDEV-6676: Optimistic parallel replication 2014-12-06 08:49:50 +01:00
rpl_parallel_multilevel.test MDEV-6676: Optimistic parallel replication 2015-02-07 09:42:58 +01:00
rpl_parallel_multilevel2.cnf MDEV-7668: Intermediate master groups CREATE TEMPORARY with INSERT, causing parallel replication failure 2015-04-13 14:08:57 +02:00
rpl_parallel_multilevel2.test MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_parallel_no_log_slave_updates-slave.opt MDEV-5363: Make parallel replication waits killable 2014-01-06 16:05:52 +01:00
rpl_parallel_no_log_slave_updates.test MDEV-515 Reduce InnoDB undo logging for insert into empty table 2021-01-25 18:41:27 +02:00
rpl_parallel_optimistic.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_parallel_optimistic_error_stop.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_parallel_optimistic_nobinlog.cnf Fix rpl_parallel_optimistic_nobinlog failure on binlog 2018-10-01 15:15:34 +05:30
rpl_parallel_optimistic_nobinlog.test Merge 10.11 into 11.4 2025-01-09 07:58:08 +02:00
rpl_parallel_optimistic_until.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_parallel_optimistic_xa.test MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_parallel_optimistic_xa_lsu_off-slave.opt MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_parallel_optimistic_xa_lsu_off.test MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_parallel_partial_binlog_trans.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_partition.test MDEV-23511 shutdown_server 10 times out, causing server kill at shutdown 2020-08-21 14:48:53 +03:00
rpl_parallel_record_gtid_wakeup.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_retry.test MDEV-33303: slave_parallel_mode=optimistic should not report the mode's specific temporary errors 2024-03-15 15:55:06 +01:00
rpl_parallel_retry_deadlock.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_parallel_rollback_assert.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_sbm-slave.opt MDEV-30619: Parallel Slave SQL Thread Can Update Seconds_Behind_Master with Active Workers 2023-07-25 16:36:14 +03:00
rpl_parallel_sbm.test MDEV-35939: rpl.rpl_parallel_sbm: "Slave_last_event_time is not equal to Master_last_event_time" 2025-01-26 09:17:23 -07:00
rpl_parallel_seq.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
rpl_parallel_show_binlog_events_purge_logs.test MDEV-30421 more tests cleaned up 2023-03-23 21:07:32 +03:00
rpl_parallel_single_grpcmt.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_slave_bgc_kill.test sporadic failures of binlog_encryption.rpl_parallel_slave_bgc_kill 2024-04-21 01:17:31 +02:00
rpl_parallel_stop_on_con_kill.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_parallel_stop_slave.test Merge 10.5 into 10.6 2024-03-18 17:07:32 +02:00
rpl_parallel_temptable-master.opt mtr: aix - stack-trace is optional 2021-07-22 15:22:47 +10:00
rpl_parallel_temptable.test Merge 10.6 into 10.11 2024-03-28 09:16:57 +02:00
rpl_parallel_wrong_binlog_order.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_wrong_exec_master_pos.test MDEV-30421 rpl_parallel_*.test cleanup 2023-03-23 22:31:55 +03:00
rpl_parallel_xa_same_xid.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_partition_archive.test MDEV-4864 - Merge tests for EXCHANGE PARTITION feature 2013-09-27 16:58:49 +04:00
rpl_partition_innodb-master.opt MDEV-4864 - Merge tests for EXCHANGE PARTITION feature 2013-09-27 16:58:49 +04:00
rpl_partition_innodb.test MDEV-4864 - Merge tests for EXCHANGE PARTITION feature 2013-09-27 16:58:49 +04:00
rpl_partition_memory.test MDEV-4864 - Merge tests for EXCHANGE PARTITION feature 2013-09-27 16:58:49 +04:00
rpl_partition_myisam.test MDEV-4864 - Merge tests for EXCHANGE PARTITION feature 2013-09-27 16:58:49 +04:00
rpl_password_boundaries.test MDEV-24312 master_host has 60 character limit, increase to 255 bytes 2021-04-20 16:36:56 +02:00
rpl_performance_schema.test include/master-slave.inc must always be included last 2017-09-20 18:17:50 +02:00
rpl_perfschema_applier_config.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_perfschema_applier_status.test MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 09:11:48 +05:30
rpl_perfschema_applier_status_by_coordinator-slave.opt MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 09:02:00 +05:30
rpl_perfschema_applier_status_by_coordinator.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_perfschema_applier_status_by_worker.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_perfschema_connect_config.test Improve mtr replication setup 2025-04-28 12:59:39 +03:00
rpl_plugin_load.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_ps.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_query_cache.test MDEV-27047: Replication fails to remove affected queries from query cache 2021-11-16 13:58:22 +02:00
rpl_rbr_monitor.test MDEV-7409 On RBR, extend the PROCESSLIST info to include at least the name of the recently used table 2021-02-26 12:27:17 +00:00
rpl_rbr_to_sbr.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_read_new_relay_log_info.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_read_old_relay_log_info.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_read_only.test Merge branch '10.10' into 10.11 2023-08-08 14:57:31 +02:00
rpl_read_only2.test read-only slave using statement replication should replicate tmp tables 2019-10-21 17:17:09 +03:00
rpl_relay_max_extension.test MDEV-16944 Fix file sharing issues on Windows in mysqltest 2024-04-17 16:52:37 +02:00
rpl_relay_space_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_relay_space_myisam.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_relayrotate-slave.opt
rpl_relayrotate.test MDEV-30421 more tests cleaned up 2023-03-23 21:07:32 +03:00
rpl_relayspace-slave.opt
rpl_relayspace.test BUG#11746302: 25228: RPL_RELAYSPACE.TEST FAILS ON POWERMACG5, 2011-05-19 16:45:45 +01:00
rpl_reopen_temp_table.test MDEV-5535: Cannot reopen temporary table 2016-06-10 18:39:43 -04:00
rpl_replicate_do-slave.opt
rpl_replicate_do.test MDEV-6112 multiple triggers per table 2016-10-05 01:11:07 +03:00
rpl_replicate_ignore_db-slave.opt
rpl_replicate_ignore_db.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_report-slave.opt
rpl_report.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_report_port.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_reset_slave_all_clears_filters.test MDEV-25284: Assertion `info->type == READ_CACHE || info->type == WRITE_CACHE' failed 2021-10-18 10:43:51 -06:00
rpl_reset_slave_fail.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_rewrite_db_sys_vars-slave.opt MDEV-15530: Variable replicate_rewrite_db cannot be found in "show global variables" 2022-10-21 14:49:05 -06:00
rpl_rewrite_db_sys_vars.test Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
rpl_rewrt_db-slave.opt MDEV-15530: Variable replicate_rewrite_db cannot be found in "show global variables" 2022-10-21 14:49:05 -06:00
rpl_rewrt_db.test MDEV-36566 SELECT create_temporary_table_binlog_formats should show exactly what it is SET to 2025-04-30 12:33:24 +02:00
rpl_rotate_logs.cnf
rpl_rotate_logs.test Fix sporadic failure in test rpl.rpl_rotate_logs 2024-08-19 21:18:56 +02:00
rpl_rotate_purge_deadlock-master.opt Bug#11763573 - 56299: MUTEX DEADLOCK WITH COM_BINLOG_DUMP, BINLOG PURGE, AND PROCESSLIST/KILL 2011-10-27 17:14:41 +03:00
rpl_rotate_purge_deadlock.test MDEV-4208: Test rpl.rpl_rotate_purge_deadlock has incorrect preamble 2013-02-27 10:43:07 +04:00
rpl_row_001.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_row_4_bytes-master.opt MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
rpl_row_4_bytes.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_row_annotate_do-slave.opt fix typo: binlog_annotate_rows_events -> binlog_annotate_row_events 2011-09-23 12:00:52 +02:00
rpl_row_annotate_do.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_row_annotate_dont-slave.opt MDEV-7635: Additional test fixes 2017-02-10 06:30:42 -05:00
rpl_row_annotate_dont.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_basic_2myisam.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_basic_3innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_basic_8partition.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_basic_11bugs-master.opt
rpl_row_basic_11bugs.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_big_table_id.opt Fixed issues when running mtr with --valgrind 2019-08-23 22:03:54 +02:00
rpl_row_big_table_id.test Merge 10.4 into 10.5 2021-11-09 08:50:33 +02:00
rpl_row_binlog_max_cache_size.test Renaming a few mysql-test/suite/rpl/include/*.test files into *.inc 2024-07-09 08:46:40 +04:00
rpl_row_blob_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_blob_myisam.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_colSize.test include/master-slave.inc must always be included last 2017-09-20 18:17:50 +02:00
rpl_row_conflicts.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_corruption-slave.opt BUG#11753004: 44360: REPLICATION FAILED 2011-07-14 12:15:24 +01:00
rpl_row_corruption.test MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-28 19:10:42 +01:00
rpl_row_create_select.test MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
rpl_row_create_table.test MDEV-31794: Preserved unsupported table flags break replication 2024-12-05 12:08:12 +01:00
rpl_row_delayed_ins.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_drop.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_drop_create_temp_table.test Add --source include/long_test.inc to a few long-running tests 2025-03-13 11:26:02 +01:00
rpl_row_drop_temp_table.test Merge 10.1 into 10.2 2019-07-25 12:14:27 +03:00
rpl_row_end_of_statement_loss-master.opt Added checking that row events ends with a proper end block 2018-01-11 23:57:08 +02:00
rpl_row_end_of_statement_loss.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
rpl_row_err_daisychain-master.opt
rpl_row_err_daisychain-slave.opt
rpl_row_find_row.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_row_find_row_debug.test MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_row_flsh_tbls.test Merge branch '10.2' into 10.3 2021-02-01 13:49:33 +01:00
rpl_row_func001.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_row_func002.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_func003.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_idempotency.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_row_img.cnf test.cnf files should !include default_my.cnf 2024-02-03 11:22:20 +01:00
rpl_row_img_blobs.cnf [MDEV-6877] Added tests for binlog_row_image using noblobs switch 2015-06-30 14:30:38 +03:00
rpl_row_img_blobs.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_row_img_eng_full_nodup.cnf MDEV-32589 FULL_NODUP mode for binlog_row_image 2023-11-23 08:28:54 +00:00
rpl_row_img_eng_full_nodup.test MDEV-33049 Assertion `marked_for_write_or_computed()' failed in bool 2024-01-12 08:32:22 +00:00
rpl_row_img_eng_min.cnf [MDEV-6877] Added basic tests for binlog_row_image using minimal and noblob values 2015-06-30 14:44:33 +03:00
rpl_row_img_eng_min.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_img_eng_noblob.cnf [MDEV-6877] Added basic tests for binlog_row_image using minimal and noblob values 2015-06-30 14:44:33 +03:00
rpl_row_img_eng_noblob.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_img_full_nodup.cnf MDEV-32589 FULL_NODUP mode for binlog_row_image 2023-11-23 08:28:54 +00:00
rpl_row_img_full_nodup.test MDEV-32589 FULL_NODUP mode for binlog_row_image 2023-11-23 08:28:54 +00:00
rpl_row_img_sequence_full.cnf test.cnf files should !include default_my.cnf 2024-02-03 11:22:20 +01:00
rpl_row_img_sequence_full.test MDEV-28986: rpl tests sometimes failing on freebsd builders 2022-09-20 15:24:13 -06:00
rpl_row_img_sequence_full_nodup.cnf test.cnf files should !include default_my.cnf 2024-02-03 11:22:20 +01:00
rpl_row_img_sequence_full_nodup.test MDEV-32589 FULL_NODUP mode for binlog_row_image 2023-11-23 08:28:54 +00:00
rpl_row_img_sequence_min.cnf test.cnf files should !include default_my.cnf 2024-02-03 11:22:20 +01:00
rpl_row_img_sequence_min.test MDEV-28986: rpl tests sometimes failing on freebsd builders 2022-09-20 15:24:13 -06:00
rpl_row_img_sequence_noblob.cnf test.cnf files should !include default_my.cnf 2024-02-03 11:22:20 +01:00
rpl_row_img_sequence_noblob.test MDEV-28986: rpl tests sometimes failing on freebsd builders 2022-09-20 15:24:13 -06:00
rpl_row_implicit_commit_binlog.test MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
rpl_row_index_choice.test MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_row_inexist_tbl.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_lcase_tblnames-slave.opt MDEV-15919 lower_case_table_names does not behave as expected(nor... 2018-10-17 10:46:20 +05:30
rpl_row_lcase_tblnames.test MDEV-30221: Move environmental macros to before master-slave 2023-04-28 20:06:02 +00:00
rpl_row_loaddata_concurrent.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_log-master.opt
rpl_row_log-slave.opt
rpl_row_log.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_log_innodb-master.opt
rpl_row_log_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_max_relay_size.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_merge_engine.test include/master-slave.inc must always be included last 2017-09-20 18:17:50 +02:00
rpl_row_mixing_engines.test MDEV-31790 work-around: Add not_msan.inc 2023-07-28 11:27:16 +03:00
rpl_row_mysqlbinlog-master.opt
rpl_row_mysqlbinlog.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_row_NOW.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_rec_comp_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_rec_comp_myisam.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_reset_slave.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_rollback_to_savepoint.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_show_relaylog_events.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_sp001.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_row_sp002_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_sp003.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_sp005.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp006_InnoDB.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_sp007_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_sp008.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp009.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_row_sp010.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_row_sp011.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_sp012.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_spatial.test MDEV-16166 RBR breaks with HA_ERR_KEY_NOT_FOUND upon DELETE from table... 2018-08-04 01:39:35 +05:30
rpl_row_tabledefs_2myisam.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_tabledefs_3innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_tbl_metadata.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_to_stmt-master.opt Allow row events in replication stream for slave in all cases 2015-10-08 10:16:35 +03:00
rpl_row_to_stmt-slave.opt Allow row events in replication stream for slave in all cases 2015-10-08 10:16:35 +03:00
rpl_row_to_stmt.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_row_trig001.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_trig002.test reenable tests from engines/funcs 2021-03-10 09:12:57 +01:00
rpl_row_trig003.test 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_row_trig004.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_trigger_multi_db.test MDEV-29894: Calling a function from a different database in a slave side trigger crashes 2023-06-21 12:51:01 -06:00
rpl_row_triggers.test MDEV-21833 Make slave_run_triggers_for_rbr enforce triggers to run on slave, even when there are triggers on the master 2020-03-09 22:16:43 +02:00
rpl_row_trunc_temp.test include/master-slave.inc must always be included last 2017-09-20 18:17:50 +02:00
rpl_row_type_conv_err_msg.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_row_unsafe_funcs.test rpl tests: move "include/master-slave.inc" down to be after all possible 2014-03-24 20:01:45 +01:00
rpl_row_until.test Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
rpl_row_USER.test reenable tests from engines/funcs 2021-03-10 09:12:57 +01:00
rpl_row_utf16.test Merge branch '10.1' into 10.2 2017-09-22 02:27:00 +02:00
rpl_row_utf32.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_row_UUID.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_row_vcol_crash.test MDEV-23033: All slaves crash once in ~24 hours and loop restart with signal 11 2021-01-04 15:06:12 +05:30
rpl_row_view01.test MDEV-34 delete storage/ndb and sql/*ndb* (and collateral changes) 2014-10-11 18:53:06 +02:00
rpl_row_virt.test MDEV-19338 InnoDB: Failing assertion: !cursor->index->is_committed() 2020-07-31 17:32:29 +10:00
rpl_row_wide_table.test include/master-slave.inc must always be included last 2017-09-20 18:17:50 +02:00
rpl_savepoint.test Merge branch '10.1' into 10.2 2017-09-22 02:27:00 +02:00
rpl_seconds_behind_master_spike.test Merge branch '10.6' into 10.11 2024-02-01 18:36:14 +01:00
rpl_semi_sync.test Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
rpl_semi_sync_after_sync.test Add --source include/long_test.inc to some tests 2025-03-15 11:15:54 +01:00
rpl_semi_sync_after_sync_coord_consistency.test MDEV-35109 fix test case 2024-11-05 22:38:55 +01:00
rpl_semi_sync_after_sync_row.test Add --source include/long_test.inc to some tests 2025-03-15 11:15:54 +01:00
rpl_semi_sync_cond_var_per_thd.cnf Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
rpl_semi_sync_cond_var_per_thd.test Testing fix for rpl_semi_sync_cond_var_per_thd failure 2024-10-30 08:32:19 -06:00
rpl_semi_sync_crash.inc Merge remote-tracking branch 'origin/11.2' into 11.4 2024-07-09 21:45:37 +04:00
rpl_semi_sync_event-master.opt 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_semi_sync_event.test MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_semi_sync_event_after_sync-master.opt MDEV-162 Enhanced semisync replication 2014-12-23 14:16:32 +01:00
rpl_semi_sync_event_after_sync.test MDEV-11862 rpl.rpl_semi_sync_event_after_sync 'fails if there is no semisync plugin 2021-02-15 13:41:44 +01:00
rpl_semi_sync_fail_over.cnf MDEV-25958: rpl_semi_sync_fail_over.test fails in buildbot 2021-08-19 11:59:39 +05:30
rpl_semi_sync_fail_over.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_semi_sync_gtid_reconnect.test merge 10.2->10.3 with conflict resolutions 2019-11-11 16:28:21 +02:00
rpl_semi_sync_master_disable_with_slave.test MDEV-36359: Patch NULL deref after disabling Semi-Sync primary 2025-04-17 15:56:45 -06:00
rpl_semi_sync_master_shutdown.test sporadic failures of rpl.rpl_semi_sync_master_shutdown 2024-04-10 19:38:39 +02:00
rpl_semi_sync_no_missed_ack_after_add_slave.cnf MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_semi_sync_no_missed_ack_after_add_slave.test MDEV-34355: rpl.rpl_semi_sync_no_missed_ack_after_add_slave ‘server_3 should have sent…’ 2025-01-25 11:05:32 -07:00
rpl_semi_sync_shutdown_await_ack.cnf MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_semi_sync_shutdown_await_ack.inc MDEV-35350: Consolidate MTR wait_for_pattern_in_file.inc and SEARCH_WAIT in search_pattern_in_file.inc 2024-11-07 13:25:58 -07:00
rpl_semi_sync_shutdown_await_ack.test MDEV-35350: Consolidate MTR wait_for_pattern_in_file.inc and SEARCH_WAIT in search_pattern_in_file.inc 2024-11-07 13:25:58 -07:00
rpl_semi_sync_skip_repl.test Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
rpl_semi_sync_slave_compressed_protocol-slave.opt MDEV-24773: slave_compressed_protocol doesn't work properly with semi-sync replication 2021-04-26 11:09:39 +05:30
rpl_semi_sync_slave_compressed_protocol.test MDEV-32655: rpl_semi_sync_slave_compressed_protocol.test assert_only_after is wrong 2023-11-01 09:10:17 -06:00
rpl_semi_sync_slave_enabled_consistent.test MDEV-33716: rpl.rpl_semi_sync_slave_enabled_consistent Fails with Error Condition Reached 2024-03-19 14:16:07 -06:00
rpl_semi_sync_slave_reply_fail.test Merge branch '11.2' into 11.3 2024-02-04 16:42:31 +01:00
rpl_semi_sync_ssl_stop.test Merge 10.11 into 11.4 2025-05-13 13:44:58 +03:00
rpl_semi_sync_wait_no_slave-master.opt MDEV-18096 The server would crash when has configs rpl_semi_sync_master_enabled = OFF rpl_semi_sync_master_wait_no_slave = OFF 2019-04-19 18:48:16 +03:00
rpl_semi_sync_wait_no_slave.test MDEV-18096 The server would crash when has configs rpl_semi_sync_master_enabled = OFF rpl_semi_sync_master_wait_no_slave = OFF 2019-04-19 18:48:16 +03:00
rpl_semi_sync_wait_point.opt MDEV-162 Enhanced semisync replication 2014-12-23 14:16:32 +01:00
rpl_semi_sync_wait_point.test MDEV-30269: Remove rpl_semi_sync_[slave,master] usage in code 2023-03-23 13:39:46 +01:00
rpl_semisync_ali_issues-master.opt MDEV-15238 rpl.perf_buildin_semisync_issue40 sporadically fails on BB 2018-02-07 19:59:20 +02:00
rpl_semisync_ali_issues-slave.opt MDEV-15238 rpl.perf_buildin_semisync_issue40 sporadically fails on BB 2018-02-07 19:59:20 +02:00
rpl_semisync_ali_issues.test Merge branch '11.3' into 11.4 2024-02-15 13:53:21 +01:00
rpl_server_id1.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_server_id2-slave.opt
rpl_server_id2.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_server_id_ignore-slave.opt
rpl_server_id_ignore.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_session_var.test MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_session_var2-master.opt MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_session_var2-slave.opt MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_session_var2.test MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_set_charset.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_set_null_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_set_null_myisam.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_set_statement.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_set_statement_default_master.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_show_slave_hosts.cnf
rpl_show_slave_hosts.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_show_slave_running.test MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_show_slave_status.test MDEV-35304: Add Connects_Tried and Master_Retry_Count to SSS 2025-02-26 20:37:53 -07:00
rpl_shutdown_sighup.test MDEV-30260: Slave crashed:reload_acl_and_cache during shutdown 2024-04-09 14:25:13 -06:00
rpl_shutdown_wait_semisync_slaves.cnf MDEV-18450 Slaves wait shutdown 2019-03-12 17:34:48 +02:00
rpl_shutdown_wait_semisync_slaves.test MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_shutdown_wait_slaves.cnf MDEV-18450 Slaves wait shutdown 2019-03-12 17:34:48 +02:00
rpl_shutdown_wait_slaves.test MDEV-18450 Slaves wait shutdown 2019-03-12 17:34:48 +02:00
rpl_skip_error-slave.opt --getopt-prefix-matching command-line option 2015-02-10 10:21:15 +01:00
rpl_skip_error.test MDEV-27512: Assertion !thd->transaction_rollback_request failed in rows_event_stmt_cleanup 2024-04-17 11:14:21 -06:00
rpl_skip_incident-master.opt MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
rpl_skip_incident-slave.opt --getopt-prefix-matching command-line option 2015-02-10 10:21:15 +01:00
rpl_skip_incident.test Merge branch '10.1' into 10.2 2017-09-22 02:27:00 +02:00
rpl_skip_replication.test Merge 10.9 into 10.10 2023-04-14 12:24:14 +03:00
rpl_slave_alias_replica.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_slave_grp_exec.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_slave_invalid_external_user.test MDEV-14784: Slave crashes in show_status_array upon running a trigger with 2019-03-27 12:34:03 +05:30
rpl_slave_load_in.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_slave_load_remove_tmpfile.test MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_slave_load_tmpdir_not_exist-slave.opt
rpl_slave_load_tmpdir_not_exist.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_slave_max_statement_time.test MDEV-27161: Add option for SQL thread to limit maximum execution time per query replicated 2022-08-03 20:25:43 +03:00
rpl_slave_restart_long_password.test MDEV-23857: replication master password length 2024-06-18 07:21:18 -06:00
rpl_slave_shutdown_mdev20821.cnf MDEV-20821 parallel slave server shutdown hang 2021-05-14 11:49:26 +01:00
rpl_slave_shutdown_mdev20821.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_slave_skip.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_slave_status.test MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-16 10:41:11 +01:00
rpl_slow_query_log-slave.opt MDEV-4865 Change related to --log option/variable was merged partially 2013-08-13 13:35:36 +02:00
rpl_slow_query_log.test Merge 10.5 into 10.6 2024-10-03 09:31:39 +03:00
rpl_sp-master.opt
rpl_sp-slave.opt
rpl_sp.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_sp004.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_sp_effects-master.opt
rpl_sp_effects-slave.opt
rpl_sp_effects.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
rpl_sp_variables.test MDEV-13685 Can not replay binary log due to Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation 'concat' 2017-09-15 12:25:06 +04:00
rpl_spec_variables.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_special_charset.opt MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_special_charset.test MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_sporadic_master-master.opt after merge changes: 2011-12-12 23:58:40 +01:00
rpl_sporadic_master.test MDEV-30421 more tests cleaned up 2023-03-23 21:07:32 +03:00
rpl_sql_thd_start_errno_cleared.test MDEV-32651: Lost Debug_sync signal in rpl_sql_thd_start_errno_cleared 2023-11-01 07:35:07 -06:00
rpl_ssl.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_ssl1.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_start_alter_1.test MDEV-27849: rpl.rpl_start_alter_XXX fail sporadically in buildbot 2023-12-11 14:31:30 +01:00
rpl_start_alter_2.test MDEV-27849: rpl.rpl_start_alter_XXX fail sporadically in buildbot 2023-12-11 14:31:30 +01:00
rpl_start_alter_3.test MDEV-27849: rpl.rpl_start_alter_XXX fail sporadically in buildbot 2023-12-11 14:31:30 +01:00
rpl_start_alter_4.test MDEV-27849: rpl.rpl_start_alter_XXX fail sporadically in buildbot 2023-12-11 14:31:30 +01:00
rpl_start_alter_5.test MDEV-27849: rpl.rpl_start_alter_XXX fail sporadically in buildbot 2023-12-11 14:31:30 +01:00
rpl_start_alter_6.test MDEV-27849: rpl.rpl_start_alter_XXX fail sporadically in buildbot 2023-12-11 14:31:30 +01:00
rpl_start_alter_7.cnf MDEV-11675 Lag Free Alter On Slave 2022-01-27 21:25:07 +02:00
rpl_start_alter_7.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_start_alter_8.cnf MDEV-11675 Lag Free Alter On Slave 2022-01-27 21:25:07 +02:00
rpl_start_alter_8.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_start_alter_bugs.test MDEV-11675 Lag Free Alter On Slave 2022-01-27 21:25:07 +02:00
rpl_start_alter_chain_basic.cnf MDEV-11675 Lag Free Alter On Slave 2022-01-27 21:25:07 +02:00
rpl_start_alter_chain_basic.test MDEV-29934 rpl.rpl_start_alter_chain_basic, rpl.rpl_start_alter_restart_slave sometimes fail in BB with result content mismatch 2024-06-19 14:09:00 +03:00
rpl_start_alter_ftwrl.test MDEV-33655 Remove alter_algorithm 2024-05-27 12:39:03 +02:00
rpl_start_alter_instant.test MDEV-33655 Remove alter_algorithm 2024-05-27 12:39:03 +02:00
rpl_start_alter_mysqlbinlog_1.test MDEV-27849: rpl.rpl_start_alter_XXX fail sporadically in buildbot 2023-12-11 14:31:30 +01:00
rpl_start_alter_mysqlbinlog_2.cnf MDEV-11675 Lag Free Alter On Slave 2022-01-27 21:25:07 +02:00
rpl_start_alter_mysqlbinlog_2.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_start_alter_optimize.test MDEV-11675. Convert the new session var to bool type and test changes 2022-01-31 22:57:39 +02:00
rpl_start_alter_para_to_seq.test MDEV-11675. Convert the new session var to bool type and test changes 2022-01-31 22:57:39 +02:00
rpl_start_alter_restart_master.test MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
rpl_start_alter_restart_slave.test Merge remote-tracking branch 'origin/11.2' into 11.4 2024-07-09 21:45:37 +04:00
rpl_start_stop_slave-slave.opt
rpl_start_stop_slave.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_stm_000001.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_stm_auto_increment_bug33029.test MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_stm_binlog_direct-master.opt
rpl_stm_binlog_max_cache_size.test Renaming a few mysql-test/suite/rpl/include/*.test files into *.inc 2024-07-09 08:46:40 +04:00
rpl_stm_conflicts.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_drop_create_temp_table.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_EE_err2.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_flsh_tbls.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_found_rows.test MDEV-31005: Make working cursor-protocol 2024-09-18 18:39:26 +07:00
rpl_stm_implicit_commit_binlog.test MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
rpl_stm_innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_lcase_tblnames-slave.opt MDEV-15919 lower_case_table_names does not behave as expected(nor... 2018-10-17 10:46:20 +05:30
rpl_stm_lcase_tblnames.test MDEV-30221: Move environmental macros to before master-slave 2023-04-28 20:06:02 +00:00
rpl_stm_loaddata_concurrent.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_loadfile.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_log-slave.opt
rpl_stm_log.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_maria.test merge with 5.3 2011-10-19 21:45:18 +02:00
rpl_stm_max_relay_size.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_mix_show_relaylog_events.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_mixing_engines.test MDEV-31790 work-around: Add not_msan.inc 2023-07-28 11:27:16 +03:00
rpl_stm_multi_query.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_no_op.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_stm_relay_ign_space-slave.opt BUG#12400313 RELAY_LOG_SPACE_LIMIT IS NOT WORKING IN MANY CASES 2012-03-12 12:28:27 +00:00
rpl_stm_relay_ign_space.test Merge remote-tracking branch '10.4' into 10.5 2023-03-31 21:32:41 +02:00
rpl_stm_reset_slave.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_stm_sp.test MDEV-11913 Split sp_get_item_value() into methods in Type_handler 2017-02-01 15:36:22 +04:00
rpl_stm_sql_mode.test rpl tests: move "include/master-slave.inc" down to be after all possible 2014-03-24 20:01:45 +01:00
rpl_stm_start_stop_slave.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_stop_middle_group.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_stm_until.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_stm_user_variables.test Merge branch '10.1' into 10.2 2017-09-22 02:27:00 +02:00
rpl_stop_slave.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_stop_slave_error-slave.opt MDEV-8345 STOP SLAVE should not cause an ERROR to be logged to the error log 2016-10-26 18:44:34 +02:00
rpl_stop_slave_error.test MDEV-32892: IO Thread Reports False Error When Stopped During Connecting to Primary 2024-07-08 10:39:17 -06:00
rpl_strict_password_validation.test MDEV-10956 Strict Password Validation Breaks Replication. 2017-01-17 15:32:41 +04:00
rpl_switch_stm_row_mixed.test Merge branch '10.6' into 10.9 2023-08-04 08:01:06 +02:00
rpl_sync-master.opt merge with 5.3 2011-10-19 21:45:18 +02:00
rpl_sync-slave.opt Remove deprecated InnoDB file format parameters 2017-06-02 09:36:14 +03:00
rpl_sync.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_system_versioning_partitions.cnf MDEV-35096: History is stored in different partitions on different nodes when using SYSTEM VERSION 2025-01-13 15:59:07 -07:00
rpl_system_versioning_partitions.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_table_options.test Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
rpl_temp_table.test MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_temp_table_mix_row.opt MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
rpl_temp_table_mix_row.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_temporal_format_default_to_default.test MDEV-30421 more tests cleaned up 2023-03-23 21:07:32 +03:00
rpl_temporal_format_mariadb53_to_mariadb53.test MDEV-5528 Command line variable to choose MariaDB-5.3 vs MySQL-5.6 temporal data formats 2014-11-03 21:45:06 +04:00
rpl_temporal_format_mariadb53_to_mysql56.test MDEV-5528 Command line variable to choose MariaDB-5.3 vs MySQL-5.6 temporal data formats 2014-11-03 21:45:06 +04:00
rpl_temporal_format_mariadb53_to_mysql56_dst.test MDEV-12672 Replicated TIMESTAMP fields given wrong value near DST change 2017-09-21 22:03:21 +02:00
rpl_temporal_format_mysql56_to_mariadb53.test MDEV-5528 Command line variable to choose MariaDB-5.3 vs MySQL-5.6 temporal data formats 2014-11-03 21:45:06 +04:00
rpl_temporal_format_mysql56_to_mysql56.test MDEV-5528 Command line variable to choose MariaDB-5.3 vs MySQL-5.6 temporal data formats 2014-11-03 21:45:06 +04:00
rpl_temporal_mysql56.test Adding support for MySQL-5.6 temporal column types: 2013-07-10 11:49:17 +04:00
rpl_temporal_mysql56_to_mariadb.test MDEV-5528 Command line variable to choose MariaDB-5.3 vs MySQL-5.6 temporal data formats 2014-11-03 21:45:06 +04:00
rpl_temporal_mysql56_to_mariadb53.test MDEV-5528 Command line variable to choose MariaDB-5.3 vs MySQL-5.6 temporal data formats 2014-11-03 21:45:06 +04:00
rpl_temporal_round.test MDEV-16991 Rounding vs truncation for TIME, DATETIME, TIMESTAMP 2018-11-26 08:10:47 +04:00
rpl_temporary.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_temporary_error2.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
rpl_temporary_error2_skip_all-slave.opt MDEV-27512: Assertion !thd->transaction_rollback_request failed in rows_event_stmt_cleanup 2024-04-17 11:14:21 -06:00
rpl_temporary_error2_skip_all.test MDEV-27512: Assertion !thd->transaction_rollback_request failed in rows_event_stmt_cleanup 2024-04-17 11:14:21 -06:00
rpl_temporary_errors-slave.opt remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01:00
rpl_temporary_errors.test Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
rpl_test_framework.cnf only allocate extra-port (in tests) when needed 2011-07-10 19:47:24 +02:00
rpl_test_framework.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_timestamp.test MDEV-29225 make explicit_defaults_for_timestamps SESSION variable 2022-08-02 18:08:38 +02:00
rpl_timezone-master.opt
rpl_timezone-slave.opt
rpl_timezone.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_tmp_table_and_DDL.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_tmp_table_and_DDL_innodb.test Merge branch 'mysql/5.5' into 5.5 2016-04-20 15:25:55 +02:00
rpl_trans_no_trans.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_trigger.test MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_trunc_temp.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_truncate_2myisam.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_truncate_3innodb.test Move mysql-test-run/extra/rpl_tests to suite/rpl/include 2018-03-29 13:59:44 +03:00
rpl_typeconv-slave.opt
rpl_typeconv.test Merge 11.4 into 11.8 2025-04-02 14:07:01 +03:00
rpl_typeconv_innodb.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_udf.test misc test/result fixes 2012-03-02 08:32:16 +01:00
rpl_unsafe_statements.test Merge branch '10.5' into 10.6 2022-05-10 14:01:23 +02:00
rpl_update.test MDEV-13417 UPDATE produces wrong values if an updated column is later used as an update source 2018-02-12 13:14:23 +01:00
rpl_upgrade_master_info.test MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_user.test MDEV-17753 ALTER USER fail to replicate 2019-01-13 20:59:45 +05:30
rpl_user_variables.test General spell fixing in comments and strings 2016-06-08 14:17:23 +03:00
rpl_using_gtid_default.test MDEV-34030 rpl.rpl_using_gtid_default can fail in (BB) mtr 2024-04-30 12:40:50 +03:00
rpl_variables.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
rpl_variables_stm.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
rpl_view.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_view_debug.test MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_view_multi.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_xa-master.opt MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_xa.inc Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_xa.test MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_xa_2pc_multi_engine.test MDEV-26652: xa transactions binlogged in wrong order 2025-01-30 11:30:33 -07:00
rpl_xa_empty_transaction.cnf test.cnf files should !include default_my.cnf 2024-02-03 11:22:20 +01:00
rpl_xa_empty_transaction.test MDEV-33921: Fix rpl_xa_empty_transaction.test 2024-07-17 16:38:26 -06:00
rpl_xa_gap_lock-slave.opt MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_xa_gap_lock.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_xa_gtid_pos_auto_engine-master.opt MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_xa_gtid_pos_auto_engine.test MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_xa_prepare_gtid_fail.test MDEV-31038: rpl.rpl_xa_prepare_gtid_fail clean up 2023-09-13 10:59:26 -06:00
rpl_xa_survive_disconnect.test MDEV-515 Reduce InnoDB undo logging for insert into empty table 2021-01-25 18:41:27 +02:00
rpl_xa_survive_disconnect_lsu_off-slave.opt MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_xa_survive_disconnect_lsu_off.test MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_xa_survive_disconnect_mixed_engines.test MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
sec_behind_master-5114.test Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
semisync_future-7591.test Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
semisync_memleak_4066.test Moved semisync from a plugin to normal server 2017-12-18 13:43:36 +02:00
sequence.cnf Simple replication test for sequences 2017-05-24 15:39:56 +03:00
sequence.test MDEV-31003: Second execution for ps-protocol 2023-07-26 17:15:00 +07:00
show_status_stop_slave_race-7126.test Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
slave_abort_blocking_timeout.test MDEV-34857: Implement --slave-abort-blocking-timeout 2024-09-04 11:44:14 +02:00
temporal_row-9560-master.opt MDEV-9560 Mariadb 10.1 Crashes when replicating from 10.0 2016-02-23 10:46:16 +01:00
temporal_row-9560.combinations MDEV-9560 Mariadb 10.1 Crashes when replicating from 10.0 2016-02-23 10:46:16 +01:00
temporal_row-9560.test MDEV-9560 Mariadb 10.1 Crashes when replicating from 10.0 2016-02-23 10:46:16 +01:00
tmp_space_usage.test MDEV-9101 Limit size of created disk temporary files and tables 2024-05-27 12:39:04 +02:00
vector.test MDEV-35204 mysqlbinlog --verbose fails on row events with vector type 2024-11-05 14:00:52 -08:00