mariadb/mysql-test/suite/rpl/t
Michael Widenius 5426facdcb Replication changes for CREATE OR REPLACE TABLE
- CREATE TABLE is by default executed on the slave as CREATE OR REPLACE
- DROP TABLE is by default executed on the slave as DROP TABLE IF NOT EXISTS

This means that a slave will by default continue even if we try to create
a table that existed on the slave (the table will be deleted and re-created) or
if we try to drop a table that didn't exist on the slave.
This should be safe as instead of having the slave stop because of an inconsistency between
master and slave, it will fix the inconsistency.
Those that would prefer to get a stopped slave instead for the above cases can set slave_ddl_exec_mode to STRICT. 

- Ensure that a CREATE OR REPLACE TABLE which dropped a table is replicated
- DROP TABLE that generated an error on master is handled as an identical DROP TABLE on the slave (IF NOT EXISTS is not added in this case)
- Added slave_ddl_exec_mode variable to decide how DDL's are replicated

New logic for handling BEGIN GTID ... COMMIT from the binary log:

- When we find a BEGIN GTID, we start a transaction and set OPTION_GTID_BEGIN
- When we find COMMIT, we reset OPTION_GTID_BEGIN and execute the normal COMMIT code.
- While OPTION_GTID_BEGIN is set:
  - We don't generate implict commits before or after statements
  - All tables are regarded as transactional tables in the binary log (to ensure things are executed exactly as on the master)
- We reset OPTION_GTID_BEGIN also on rollback

This will help ensuring that we don't get any sporadic commits (and thus new GTID's) on the slave and will help keep the GTID's between master and slave in sync.


mysql-test/extra/rpl_tests/rpl_log.test:
  Added testing of mode slave_ddl_exec_mode=STRICT
mysql-test/r/mysqld--help.result:
  New help messages
mysql-test/suite/rpl/r/create_or_replace_mix.result:
  Testing of CREATE OR REPLACE TABLE with replication
mysql-test/suite/rpl/r/create_or_replace_row.result:
  Testing of CREATE OR REPLACE TABLE with replication
mysql-test/suite/rpl/r/create_or_replace_statement.result:
  Testing replication of create or replace
mysql-test/suite/rpl/r/rpl_gtid_startpos.result:
  Test must be run in slave_ddl_exec_mode=STRICT as part of the test depends on that DROP TABLE should fail on slave.
mysql-test/suite/rpl/r/rpl_row_log.result:
  Updated result
mysql-test/suite/rpl/r/rpl_row_log_innodb.result:
  Updated result
mysql-test/suite/rpl/r/rpl_row_show_relaylog_events.result:
  Updated result
mysql-test/suite/rpl/r/rpl_stm_log.result:
  Updated result
mysql-test/suite/rpl/r/rpl_stm_mix_show_relaylog_events.result:
  Updated result
mysql-test/suite/rpl/r/rpl_temp_table_mix_row.result:
  Updated result
mysql-test/suite/rpl/t/create_or_replace.inc:
  Testing of CREATE OR REPLACE TABLE with replication
mysql-test/suite/rpl/t/create_or_replace_mix.cnf:
  Testing of CREATE OR REPLACE TABLE with replication
mysql-test/suite/rpl/t/create_or_replace_mix.test:
  Testing of CREATE OR REPLACE TABLE with replication
mysql-test/suite/rpl/t/create_or_replace_row.cnf:
  Testing of CREATE OR REPLACE TABLE with replication
mysql-test/suite/rpl/t/create_or_replace_row.test:
  Testing of CREATE OR REPLACE TABLE with replication
mysql-test/suite/rpl/t/create_or_replace_statement.cnf:
  Testing of CREATE OR REPLACE TABLE with replication
mysql-test/suite/rpl/t/create_or_replace_statement.test:
  Testing of CREATE OR REPLACE TABLE with replication
mysql-test/suite/rpl/t/rpl_gtid_startpos.test:
  Test must be run in slave_ddl_exec_mode=STRICT as part of the test depends on that DROP TABLE should fail on slave.
mysql-test/suite/rpl/t/rpl_stm_log.test:
  Removed some lines
mysql-test/suite/sys_vars/r/slave_ddl_exec_mode_basic.result:
  Testing of slave_ddl_exec_mode
mysql-test/suite/sys_vars/t/slave_ddl_exec_mode_basic.test:
  Testing of slave_ddl_exec_mode
sql/handler.cc:
  Regard all tables as transactional in commit if OPTION_GTID_BEGIN is set.
  This is to ensure that statments are not commited too early if non transactional tables are used.
sql/log.cc:
  Regard all tables as transactional in commit if OPTION_GTID_BEGIN is set.
  Also treat 'direct' log events as transactional (to get them logged as they where on the master)
sql/log_event.cc:
  Ensure that the new error from DROP TABLE when trying to drop a view is treated same as the old one.
  Store error code that slave expects in THD.
  Set OPTION_GTID_BEGIN if we find a BEGIN.
  Reset OPTION_GTID_BEGIN if we find a COMMIT.
sql/mysqld.cc:
  Added slave_ddl_exec_mode_options
sql/mysqld.h:
  Added slave_ddl_exec_mode_options
sql/rpl_gtid.cc:
  Reset OPTION_GTID_BEGIN if we record a gtid (safety)
sql/sql_class.cc:
  Regard all tables as transactional in commit if OPTION_GTID_BEGIN is set.
sql/sql_class.h:
  Added to THD: log_current_statement and slave_expected_error
sql/sql_insert.cc:
  Ensure that CREATE OR REPLACE is logged if table was deleted.
  Don't do implicit commit for CREATE if we are under OPTION_GTID_BEGIN
sql/sql_parse.cc:
  Change CREATE TABLE -> CREATE OR REPLACE TABLE for slaves
  Change DROP TABLE -> DROP TABLE IF EXISTS for slaves
  CREATE TABLE doesn't force implicit commit in case of OPTION_GTID_BEGIN
  Don't do commits before or after any statement if OPTION_GTID_BEGIN was set.
sql/sql_priv.h:
  Added OPTION_GTID_BEGIN
sql/sql_show.cc:
  Enhanced store_create_info() to also be able to handle CREATE OR REPLACE
sql/sql_show.h:
  Updated prototype
sql/sql_table.cc:
  Ensure that CREATE OR REPLACE is logged if table was deleted.
sql/sys_vars.cc:
  Added slave_ddl_exec_mode
sql/transaction.cc:
  Added warning if we got a GTID under OPTION_GTID_BEGIN
2014-02-05 19:01:59 +02:00
..
create_or_replace.inc Replication changes for CREATE OR REPLACE TABLE 2014-02-05 19:01:59 +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_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
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
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 Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_000011.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_000013.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_000017.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01:00
rpl_alter.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01: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_auto_increment-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_auto_increment-slave.opt Bug#54201: "SET INSERT_ID" event must be ignored if corresponding event is ignored 2010-11-30 10:47:08 +01:00
rpl_auto_increment.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01: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 BUG#11754117 2012-04-23 11:51:19 +03:00
rpl_auto_increment_update_failure.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_begin_commit_rollback-master.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
rpl_begin_commit_rollback-slave.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
rpl_begin_commit_rollback.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_binlog_corruption.test merge with 5.3 2011-10-19 21:45:18 +02:00
rpl_binlog_errors-master.opt BUG#46166: MYSQL_BIN_LOG::new_file_impl is not propagating error 2010-11-30 23:32:51 +00:00
rpl_binlog_errors.test rename debug variable to debug_dbug, to make test pass in release builds 2011-12-15 22:07:58 +01:00
rpl_binlog_grant.test allow suite.pm to skip combinations that originate from test/include files. 2012-02-07 16:22:36 +01:00
rpl_binlog_index.test mysql-5.5 merge 2012-01-16 20:16:35 +01:00
rpl_bit.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01: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 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_bug26395.test rename debug variable to debug_dbug, to make test pass in release builds 2011-12-15 22:07:58 +01:00
rpl_bug31076.test BUG#15891524: RLI_FAKE MODE IS NOT UNSET AFTER BINLOG REPLAY 2012-11-20 12:37:23 +00:00
rpl_bug33931.test rename debug variable to debug_dbug, to make test pass in release builds 2011-12-15 22:07:58 +01:00
rpl_bug37426.test WL#5867, reorganize test cases of bugs suite 2011-04-14 00:18:08 +04: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-slave.opt Bug #48463 backporting from 6.0-rpl to celosia a set of bugs 2009-11-20 15:30:35 +02:00
rpl_bug41902.test BUG#14310067: RPL_CANT_READ_EVENT_INCIDENT AND RPL_BUG41902 FAIL ON 5.5 2012-07-13 10:04:59 +01:00
rpl_cant_read_event_incident.test - Solaris fixes: 2013-05-15 16:28:12 +03:00
rpl_change_master.test merge with 5.3 2011-10-19 21:45:18 +02:00
rpl_charset.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_charset_sjis.test The bug 2013-05-08 13:36:17 +04:00
rpl_checksum-master.opt Backport MySQL WL#2540 into MariaDB. 2011-05-03 14:01:11 +02:00
rpl_checksum.test Fix race in rpl.rpl_checksum. 2012-03-29 16:02:19 +02:00
rpl_checksum_cache.test Backport MySQL WL#2540 into MariaDB. 2011-05-03 14:01:11 +02:00
rpl_circular_for_4_hosts.cnf 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_circular_for_4_hosts.test 5.5 merge 2013-06-06 17:51:28 +02:00
rpl_colSize.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_commit_after_flush.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_concurrency_error-master.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
rpl_concurrency_error.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_conditional_comments.test Increased the version number to 10.0 2012-05-31 22:39:11 +03:00
rpl_connection.test BUG#13427949: CHANGE MASTER TO USER='' (EMPTY USER) CAUSES ERRORS ON VALGRING 2011-11-24 14:51:18 +00: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 Instead of writing "Errcode" to the log for Slave errors, use "Internal MariaDB error code" 2013-05-03 01:54:47 +03:00
rpl_create_database-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_create_database-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
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_if_not_exists.test Implementation of MDEV-5491: CREATE OR REPLACE TABLE 2014-01-29 15:37:17 +02:00
rpl_create_tmp_table_if_not_exists.test per-file combinations 2012-02-06 21:36:56 +01: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_cross_version-master.opt remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01:00
rpl_cross_version.test BUG#42879: CHANGE MASTER RELAY_LOG_FILE=path fails on windows 2011-01-17 18:51:01 +00: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-4332 Increase username length from 16 characters 2013-11-03 16:31:52 +01:00
rpl_ddl-slave.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
rpl_ddl.test allow suite.pm to skip combinations that originate from test/include files. 2012-02-07 16:22:36 +01:00
rpl_deadlock_innodb-slave.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
rpl_deadlock_innodb.test Merge with MySQL 5.1.55 2011-02-20 18:51:43 +02:00
rpl_delete_no_where.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_do_grant.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_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 MDEV-4441 DROP DATABASE with a newly created ARCHIVE table does not work 2013-06-15 19:09:31 +02:00
rpl_drop_temp-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_drop_temp.test don't even try to run xtradb-only tests with innodb, use have_xtradb.combinations. 2012-02-23 09:18:48 +01:00
rpl_drop_view.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01: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_EE_err.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_empty_master_host.test Bug#13437900 - VALGRIND REPORTS A LEAK FOR REPL_IGNORE_SERVER_IDS 2011-12-14 15:33:43 +02:00
rpl_err_ignoredtable-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_err_ignoredtable.test Attempt to fix sproadic failures of rpl.rpl_err_ignoredtable. 2013-08-07 15:55:17 +04:00
rpl_events.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_extra_col_master_innodb.test BUG#11893288 60542: RPL.RPL_EXTRA_COL_MASTER_* DOESN'T TEST WHAT WAS INTENDED 2012-01-16 09:17:40 +00:00
rpl_extra_col_master_myisam.test BUG#11893288 60542: RPL.RPL_EXTRA_COL_MASTER_* DOESN'T TEST WHAT WAS INTENDED 2012-01-16 09:17:40 +00:00
rpl_extra_col_slave_innodb.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_extra_col_slave_myisam.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_failed_optimize.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_filter_dbs_dynamic.test Make Replication filter settings dynamic. 2012-03-19 15:00:23 -07:00
rpl_filter_tables_dynamic.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_filter_tables_not_exist-slave.opt Cherry picking patch for BUG#37051 2008-08-26 18:01:49 +08:00
rpl_filter_tables_not_exist.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_filter_wild_tables_dynamic.test Make Replication filter settings dynamic. 2012-03-19 15:00:23 -07:00
rpl_flush_logs-master.opt WL#5142 FLUSH LOGS should take optional arguments for which log(s) to flush 2009-12-03 16:59:58 +08:00
rpl_flush_logs.test Changed SHOW_FUNC variabels that don't return SHOW_ARRAY to SHOW_SIMPLE_FUNC. 2012-10-03 01:44:54 +03: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 BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_free_items-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
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_function_defaults.test MDEV-452 Add full support for auto-initialized/updated timestamp and datetime 2012-10-17 15:43:56 +03:00
rpl_geometry.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_get_lock.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_get_master_version_and_clock-slave.opt Bug #46828 rpl_get_master_version_and_clock fails on PB-2 2009-10-29 10:26:59 +08:00
rpl_get_master_version_and_clock.test rename debug variable to debug_dbug, to make test pass in release builds 2011-12-15 22:07:58 +01:00
rpl_grant.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_gtid_basic.cnf MDEV-26: Global transaction ID. 2013-02-18 15:41:17 +01:00
rpl_gtid_basic.test MDEV-4946: IO thread should expose its current GTID position 2013-11-25 15:21:25 +01:00
rpl_gtid_crash-master.opt MDEV-26: Global transaction ID. 2013-03-21 11:03:31 +01:00
rpl_gtid_crash.test 10.0-base merge 2013-12-16 13:02:21 +01:00
rpl_gtid_crash_myisam-master.opt MDEV-4982: GTID looses all binlog state after crash if InnoDB is disabled 2013-11-21 14:42:25 +01:00
rpl_gtid_crash_myisam.test MDEV-4982: GTID looses all binlog state after crash if InnoDB is disabled 2013-11-21 14:42:25 +01:00
rpl_gtid_errorhandling.test bMDEV-4906: When event apply fails, next SQL thread start errorneously commits the failing GTID to gtid_slave_pos 2013-08-20 13:44:50 +02:00
rpl_gtid_ignored.test MDEV-4488: When master is on the list of ignore_server_ids, GTID position on slave is not updated 2013-08-22 12:36:42 +02: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-26: Global transaction ID. 2013-05-22 17:36:48 +02: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-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
rpl_gtid_mdev4474.cnf MDEV-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
rpl_gtid_mdev4474.test MDEV-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
rpl_gtid_mdev4484.test MDEV-4488: When master is on the list of ignore_server_ids, GTID position on slave is not updated 2013-08-22 12:36:42 +02: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-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_mdev4820.test MDEV-4820: Empty master does not give error for slave GTID position that does not exist in the binlog 2013-08-16 15:10:25 +02:00
rpl_gtid_nobinlog.cnf MDEV-26: Global transaction ID. 2013-03-18 15:09:36 +01:00
rpl_gtid_nobinlog.test MDEV-4708: GTID strict mode doesn't work on a database with purged binlogs 2013-07-10 12:01:52 +02:00
rpl_gtid_reconnect.test MDEV-4483: CHANGE MASTER TO master_use_gtid=xxx looses old-style coordinates. 2013-06-07 08:43:21 +02:00
rpl_gtid_startpos.test Replication changes for CREATE OR REPLACE TABLE 2014-02-05 19:01:59 +02:00
rpl_gtid_stop_start.cnf MDEV-26, Global transaction ID. 2013-04-09 11:46:38 +02:00
rpl_gtid_stop_start.test MDEV-4650: show variables; ERROR 1946 (HY000): Failed to load replication slave GTID position 2013-08-26 12:51:09 +02:00
rpl_gtid_strict.test MDEV-4478: Implement GTID "strict mode" 2013-05-28 13:28:31 +02:00
rpl_gtid_until.test MDEV-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
rpl_heartbeat.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01: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 Bug#43828, Bug#59494. 2011-02-04 22:07:48 +03:00
rpl_heartbeat_basic.cnf WL#4641 Heartbeat testing 2009-10-02 23:24:40 +04:00
rpl_heartbeat_basic.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_heartbeat_ssl.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +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 Instead of writing "Errcode" to the log for Slave errors, use "Internal MariaDB error code" 2013-05-03 01:54:47 +03:00
rpl_ignore_grant-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_ignore_grant.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_ignore_revoke-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
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 WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_ignore_table.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_ignore_table_update-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_ignore_table_update.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_incident.test Fixes for parallel slave: 2013-10-14 00:24:05 +03:00
rpl_init_slave-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
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 rename debug variable to debug_dbug, to make test pass in release builds 2011-12-15 22:07:58 +01:00
rpl_innodb-master.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
rpl_innodb_bug28430-master.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
rpl_innodb_bug28430-slave.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
rpl_innodb_bug28430.test 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_innodb_bug30888.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_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 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_insert_delayed.test per-combination result files 2012-02-06 22:55:17 +01:00
rpl_insert_id.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_insert_id_pk.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_insert_ignore.test Post-fix for BUG#59338. 2011-01-31 14:31:33 +00:00
rpl_invoked_features-master.opt Post-push fixup for WL#5349 2010-06-20 22:43:34 +02:00
rpl_invoked_features.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_ip_mix.cnf Reviewed patch of QA results for WL#798. 2009-11-23 17:38:42 +01:00
rpl_ip_mix.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
rpl_ip_mix2.cnf Reviewed patch of QA results for WL#798. 2009-11-23 17:38:42 +01:00
rpl_ip_mix2.test mysql-5.5 merge 2012-01-16 20:16:35 +01:00
rpl_ipv4_as_ipv6.cnf Reviewed patch of QA results for WL#798. 2009-11-23 17:38:42 +01:00
rpl_ipv4_as_ipv6.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
rpl_ipv6.cnf Reviewed patch of QA results for WL#798. 2009-11-23 17:38:42 +01:00
rpl_ipv6.test Removing copyright headers from test files 2011-10-19 23:44:17 +02: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 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_known_bugs_detection-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_known_bugs_detection.test mysql-5.5 merge 2012-01-16 20:16:35 +01:00
rpl_LD_INFILE.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_loaddata.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_loaddata_charset.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_loaddata_fatal-slave.opt Move disabling of rpl_invoked_features to suite/rpl/t/disabled.def 2007-06-27 16:49:32 +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_m-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
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 BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_loaddata_s-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
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 Bug #43913 rpl_cross_version can't pass on conflicts complainig clash with --slave-load-tm 2009-11-28 12:43:16 +08:00
rpl_loaddata_symlink-master.sh Bug #57840 MTR: parallel execution breaks with smart ordering of test cases 2010-11-05 15:26:38 +01:00
rpl_loaddata_symlink-slave.opt Bug #43913 rpl_cross_version can't pass on conflicts complainig clash with --slave-load-tm 2009-11-28 12:43:16 +08:00
rpl_loaddata_symlink-slave.sh Bug #57840 MTR: parallel execution breaks with smart ordering of test cases 2010-11-05 15:26:38 +01:00
rpl_loaddata_symlink.test 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_loaddatalocal.test Increased the version number to 10.0 2012-05-31 22:39:11 +03:00
rpl_loadfile.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +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 merge with mysql-5.5.21 2012-03-09 08:06:59 +01:00
rpl_manual_change_index_file.test BUG#13050593 - BACKSLASH SWALLOWED BY INCLUDE/SHOW_SLAVE_STATUS.INC 2012-01-19 16:56:43 +00: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 MDEV-4475: Replication from MariaDB 10.0 to 5.5 does not work 2013-05-24 22:21:08 +02:00
rpl_master_pos_wait.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_mdev359.test MDEV-4254 Semisync plugins to link statically into MariaDB 2013-04-09 23:28:21 +02:00
rpl_mdev382.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
rpl_misc_functions-slave.sh Backport for WL#3894 2009-11-28 02:34:47 +03:00
rpl_misc_functions.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_mix_found_rows.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_mixed_binlog_max_cache_size.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01: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 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_mixed_drop_create_temp_table.test fixes for test failures 2012-09-27 20:09:46 +02:00
rpl_mixed_implicit_commit_binlog.test 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_mixed_mixing_engines.test fixes for test failures 2012-09-27 20:09:46 +02:00
rpl_mixed_row_innodb-master.opt Post-push fixup for WL#5349 2010-06-20 22:43:34 +02:00
rpl_multi_delete-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
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 WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
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 BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_multi_update.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_multi_update2-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_multi_update2.test BUG#11758263 50440: MARK UNORDERED UPDATE WITH AUTOINC UNSAFE 2012-02-09 23:28:33 +05:30
rpl_multi_update3.test BUG#11758263 50440: MARK UNORDERED UPDATE WITH AUTOINC UNSAFE 2012-02-09 23:28:33 +05:30
rpl_multi_update4-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
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_mysql_upgrade.test 10.0-base merge 2013-11-13 23:03:48 +01:00
rpl_name_const.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_non_direct_mixed_mixing_engines.test fixes for test failures 2012-09-27 20:09:46 +02:00
rpl_non_direct_row_mixing_engines.test fixes for test failures 2012-09-27 20:09:46 +02:00
rpl_non_direct_stm_mixing_engines.test fixes for test failures 2012-09-27 20:09:46 +02: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 BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_not_null_myisam.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_optimize.test mysql-5.5.22 merge 2012-03-28 01:04:46 +02:00
rpl_packet-master.opt A follow-up on WL#5154 and WL#5182: remove forgotten options. 2010-03-03 22:22:02 +03:00
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 Instead of writing "Errcode" to the log for Slave errors, use "Internal MariaDB error code" 2013-05-03 01:54:47 +03:00
rpl_parallel.test MDEV-5206: Incorrect slave old-style position in MDEV-4506, parallel replication. 2013-10-31 14:11:41 +01:00
rpl_parallel_show_binlog_events_purge_logs.test BUG#13979418: SHOW BINLOG EVENTS MAY CRASH THE SERVER 2012-04-20 22:25:59 +01: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-4332 Increase username length from 16 characters 2013-04-18 22:17:29 +02:00
rpl_performance_schema.test Don't crash with: UPDATE performance_schema.setup_instruments SET ENABLED="NO"; 2012-01-24 18:07:35 +02:00
rpl_plugin_load.test overlay support for mysql-test-run and mysqltest 2012-02-23 07:50:11 +01:00
rpl_ps.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_rbr_to_sbr.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_read_only.test BUG#11754075: BUG#45621: A FEW TEST FILES ARE DISABLED DUE TO WL#4284 2011-02-15 12:01:52 +00:00
rpl_relay_space_innodb.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_relay_space_myisam.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_relayrotate-slave.opt A follow-up on WL#5154 and WL#5182: remove forgotten options. 2010-03-03 22:22:02 +03:00
rpl_relayrotate.test 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_relayspace-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_relayspace.test BUG#11746302: 25228: RPL_RELAYSPACE.TEST FAILS ON POWERMACG5, 2011-05-19 16:45:45 +01:00
rpl_replicate_do-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_replicate_do.test fixes for test failures 2012-09-27 20:09:46 +02:00
rpl_replicate_ignore_db-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
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 Bug #28780 report_host is not available through SELECT @@report_host 2008-03-05 12:25:55 +02:00
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 BUG#13812374 - RPL.RPL_REPORT_PORT FAILS OCCASIONALLY ON PB2 2012-12-04 18:14:01 +05:30
rpl_rewrt_db-slave.opt merge mysql-5.0-bugteam --> mysql-5.1-bugteam 2009-08-28 10:45:57 +01:00
rpl_rewrt_db.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_rotate_logs.cnf Make it possible to specify test specifi config file as <testname>.cnf 2008-04-25 14:07:17 +02:00
rpl_rotate_logs.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_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 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_row_4_bytes-master.opt MDEV-5115 RBR from MySQL 5.6 to MariaDB 10.0 does not work 2013-12-09 12:37:45 +01:00
rpl_row_4_bytes.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01: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 typo: binlog_annotate_rows_events -> binlog_annotate_row_events 2011-09-23 12:00:52 +02:00
rpl_row_annotate_dont-slave.opt Merge Percona patch MWL#47 into mariadb 5.2-percona. 2011-01-10 14:53:09 +01:00
rpl_row_annotate_dont.test fix typo: binlog_annotate_rows_events -> binlog_annotate_row_events 2011-09-23 12:00:52 +02:00
rpl_row_basic_2myisam.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_basic_3innodb.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_row_basic_8partition.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_basic_11bugs-master.opt WL#5349 Change default storage engine to InnoDB 2010-06-17 22:51:35 +02:00
rpl_row_basic_11bugs.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_row_binlog_max_cache_size.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_row_blob_innodb.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_blob_myisam.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_colSize.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_row_conflicts.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_row_corruption-slave.opt BUG#11753004: 44360: REPLICATION FAILED 2011-07-14 12:15:24 +01:00
rpl_row_corruption.test rename debug variable to debug_dbug, to make test pass in release builds 2011-12-15 22:07:58 +01:00
rpl_row_create_table.test Implementation of MDEV-5491: CREATE OR REPLACE TABLE 2014-01-29 15:37:17 +02:00
rpl_row_delayed_ins.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_drop.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_drop_create_temp_table.test fixes for test failures 2012-09-27 20:09:46 +02:00
rpl_row_err_daisychain-master.opt Bug#18817, removing --binlog-format option from .opt files 2008-08-13 23:12:51 +04:00
rpl_row_err_daisychain-slave.opt Bug#18817, removing --binlog-format option from .opt files 2008-08-13 23:12:51 +04:00
rpl_row_find_row.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_find_row_debug.test mysql-5.5 merge 2012-01-16 20:16:35 +01:00
rpl_row_flsh_tbls.test post-merge fixes. 2011-07-02 22:12:12 +02:00
rpl_row_func001.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01: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 BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_idempotency.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_row_implicit_commit_binlog.test 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_row_index_choice.test rename debug variable to debug_dbug, to make test pass in release builds 2011-12-15 22:07:58 +01:00
rpl_row_inexist_tbl.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_row_loaddata_concurrent.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
rpl_row_log-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_log-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_log.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_log_innodb-master.opt Post-push fixup for WL#5349 2010-06-20 22:43:34 +02:00
rpl_row_log_innodb.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_max_relay_size.test BUG#38350: Many tests don't clean up after themselves on exit. 2008-11-13 20:19:00 +01:00
rpl_row_merge_engine.test Bug#13693012: SLAVE CRASHING ON INSERT STATEMENT WITH MERGE TABLE 2012-02-24 16:07:43 +00:00
rpl_row_mixing_engines.test fixes for test failures 2012-09-27 20:09:46 +02:00
rpl_row_mysqlbinlog-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_mysqlbinlog.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01: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 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_myisam.test BUG#11766865: 60091: RBR + NO PK + UPDATE NULL VALUE --> SLAVE BREAK WITH ERROR HA_ERR_END_OF_ 2011-03-24 10:52:40 +00:00
rpl_row_reset_slave.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_show_relaylog_events.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01: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 BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_sp003.test 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_row_sp005.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_row_sp006_InnoDB.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_sp007_innodb.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_sp008.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_row_sp009.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01: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 BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_tabledefs_2myisam.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_tabledefs_3innodb.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_tbl_metadata.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01: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 Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_row_trig003.test 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_row_trig004.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_trunc_temp.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_unsafe_funcs.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_until.test 5.5 merge 2013-06-06 17:51:28 +02:00
rpl_row_USER.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_utf16.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_row_utf32.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_row_UUID.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_view01.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_row_wide_table.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_savepoint.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_semi_sync.test MDEV-4254 Semisync plugins to link statically into MariaDB 2013-04-09 23:28:21 +02:00
rpl_semi_sync_event-master.opt 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_semi_sync_event.test MDEV-4254 Semisync plugins to link statically into MariaDB 2013-04-09 23:28:21 +02: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 WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_server_id2.test MDEV-26: Global transaction ID 2013-03-26 10:35:34 +01:00
rpl_server_id_ignore-slave.opt fixing tests results: rpl_ndb_log, rpl_ndb_multi, sp_trans_log; adding replicate-ignore_server_ids specific tests 2009-10-02 16:15:54 +03:00
rpl_server_id_ignore.test Bug#13437900 - VALGRIND REPORTS A LEAK FOR REPL_IGNORE_SERVER_IDS 2011-12-14 15:33:43 +02:00
rpl_session_var.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_set_charset.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_set_null_innodb.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_set_null_myisam.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_show_slave_hosts.cnf Bug#13963 SHOW SLAVE HOSTS is unreliable 2009-10-20 14:30:15 +08:00
rpl_show_slave_hosts.test BUG#13333431 - INCORRECT DEFAULT PORT IN 'SHOW SLAVE HOSTS' OUTPUT 2012-02-28 14:02:27 +05:30
rpl_show_slave_running.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01:00
rpl_skip_error-slave.opt Bug #30594 rpl.rpl_skip_error is nondeterministic 2007-10-22 21:45:21 +03:00
rpl_skip_error.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_skip_replication.test Merge MWL#234: @@skip_replication feature to MariaDB 5.5. 2012-03-01 12:41:49 +01:00
rpl_slave_grp_exec.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_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 Instead of writing "Errcode" to the log for Slave errors, use "Internal MariaDB error code" 2013-05-03 01:54:47 +03:00
rpl_slave_load_tmpdir_not_exist-slave.opt Bug #42861 Assigning invalid directories to --slave-load-tmpdir crashes the slave 2009-03-18 10:31:17 +00:00
rpl_slave_load_tmpdir_not_exist.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_slave_skip.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_slave_status.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +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 BUG#11877568 - RPL_SEMI_SYNC FAILS IN PB 2011-03-16 16:38:30 +00:00
rpl_sp-master.opt BUG#48048: Deprecated constructs need removal in Betony 2009-11-04 12:28:20 +00:00
rpl_sp-slave.opt BUG#48048: Deprecated constructs need removal in Betony 2009-11-04 12:28:20 +00:00
rpl_sp.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01: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 WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
rpl_sp_effects-slave.opt WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
rpl_sp_effects.test mysql-5.5.31 merge 2013-05-07 13:05:09 +02:00
rpl_spec_variables-slave.opt WL#3788 2009-10-03 22:21:44 +04:00
rpl_spec_variables.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_sporadic_master-master.opt after merge changes: 2011-12-12 23:58:40 +01:00
rpl_sporadic_master.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_ssl.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_ssl1.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_start_stop_slave-slave.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
rpl_start_stop_slave.test Added new status variables: 2012-09-09 01:22:06 +03:00
rpl_stm_000001.test MDEV-3917 multiple use locks (GET_LOCK) in one connection. 2013-04-12 18:06:51 +05:00
rpl_stm_auto_increment_bug33029.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_stm_binlog_direct-master.opt BUG#46364 MyISAM transbuffer problems (NTM problem) 2010-01-20 19:08:16 +00:00
rpl_stm_binlog_max_cache_size.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_stm_conflicts.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_stm_drop_create_temp_table.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_stm_EE_err2.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_flsh_tbls.test post-merge fixes. 2011-07-02 22:12:12 +02:00
rpl_stm_found_rows.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_stm_implicit_commit_binlog.test 5.5-merge 2011-07-02 22:08:51 +02:00
rpl_stm_innodb.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01:00
rpl_stm_loaddata_concurrent.test WL#5349 Change default storage engine to InnoDB 2010-06-17 22:51:35 +02:00
rpl_stm_loadfile.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_stm_log-slave.opt Merging 5.0-bugteam into 5.1-bugteam 2008-09-01 11:00:52 +02:00
rpl_stm_log.test Replication changes for CREATE OR REPLACE TABLE 2014-02-05 19:01:59 +02:00
rpl_stm_maria.test merge with 5.3 2011-10-19 21:45:18 +02:00
rpl_stm_max_relay_size.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_stm_mix_show_relaylog_events.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01:00
rpl_stm_mixing_engines.test fixes for test failures 2012-09-27 20:09:46 +02:00
rpl_stm_multi_query.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_stm_no_op.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01: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 BUG#12400313 2012-03-12 23:26:00 +00:00
rpl_stm_reset_slave.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_sql_mode.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_stm_start_stop_slave.test BUG#13593869 - 64035: SEVERAL ERRORS IN COM_BINLOG_DUMP/MYSQL_BINLOG_SEND CRASH THE SERVER 2012-01-18 00:16:19 +02:00
rpl_stm_stop_middle_group.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_stm_until.test 5.5 merge 2013-06-06 17:51:28 +02:00
rpl_stm_user_variables.test Added missing tests for GET DIAGNOSTICS. 2013-08-07 13:18:26 -07:00
rpl_stop_slave.test Merged the implementation of MDEV-28 LIMIT ROWS EXAMINED into MariaDB 5.5. 2012-03-12 00:45:18 +02:00
rpl_switch_stm_row_mixed.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01:00
rpl_sync-master.opt merge with 5.3 2011-10-19 21:45:18 +02:00
rpl_sync-slave.opt merge with 5.3 2011-10-19 21:45:18 +02:00
rpl_sync.test MDEV-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
rpl_table_options.test merge with 5.3 2011-10-19 21:45:18 +02:00
rpl_temp_table.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_temp_table_mix_row.test merge with 5.3 2011-10-19 21:45:18 +02: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-5297 TIME(0), TIMESTAMP(0) and DATETIME(0) are self-incompatible during replication (upstream) 2013-12-06 19:02:55 +04:00
rpl_temporary.test merge with 5.3 2011-10-19 21:45:18 +02:00
rpl_temporary_error2.test MDEV-5291: Slave transaction retry on temporary error leaves dangling error in SHOW SLAVE STATUS 2013-11-14 15:08:29 +01: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 with 5.3 2011-10-19 21:45:18 +02: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 BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_timezone-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_timezone-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_timezone.test BUG#11758263 50440: MARK UNORDERED UPDATE WITH AUTOINC UNSAFE 2012-02-09 23:28:33 +05:30
rpl_tmp_table_and_DDL.test Merge with MySQL 5.1.55 2011-02-20 18:51:43 +02:00
rpl_trigger.test merge with MySQL 5.5.27 2012-08-09 17:22:00 +02:00
rpl_trunc_temp.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_truncate_2myisam.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_truncate_3innodb.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_typeconv-slave.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
rpl_typeconv.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_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_user.test BUG#49978: Replication tests don't clean up replication state at the end 2010-12-19 18:07:28 +01:00
rpl_user_variables.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_variables.test remove few obscure, unused, or misused mtr features 2012-02-06 18:42:18 +01:00
rpl_variables_stm.test don't even try to run xtradb-only tests with innodb, use have_xtradb.combinations. 2012-02-23 09:18:48 +01:00
rpl_view.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
rpl_view_multi.test Merged BUG#49978 from 5.1-bugteam to 5.5-bugteam. 2010-12-19 18:15:12 +01:00
semisync_memleak_4066.test MDEV-4254 Semisync plugins to link statically into MariaDB 2013-04-09 23:28:21 +02:00