[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.226.248.119: ~ $
# ==== Purpose ====
#
# In order to avoid problems with GTIDs, MySQL server should refuse to execute
# any statements that will be split before sending to binlog if
# @@SESSION.GTID_NEXT is set to 'UUID:NUMBER'.
#
# In MySQL server, DROP TABLE statements can be split into up to three
# distinct binlog events: one containing the regular tables, one containing
# transactional temporary tables and one containing non-transactional
# temporary tables.
#
# In the first part, this test will verify if a splittable DROP TABLE
# statement is being refused to execute throwing the correct error to the
# client session.
#
# In the second part, this test will verify an issue with inexistent temporary
# tables being assumed as transactional on the slave side. This was making
# the slave to split a DROP statement that the master logged as a single DROP
# statement.
#
# In the third part, this test will verify that a slave having to drop
# temporary tables because of the master have restarted will split the DROP
# TABLE statement also based on table types (transactional or not).
#
# The details about the implementation of this test is in the beginning of
# each part.
#
# ==== Related Bugs and Worklogs ====
#
# BUG#17620053: SET GTID_NEXT AND DROP TABLE WITH BOTH REGULAR AND TEMPORARY
#               TABLES
#
--let $rpl_topology= 1->2->3
--source include/have_gtid.inc
--source include/rpl_init.inc
--source include/rpl_default_connections.inc
--source include/have_innodb.inc

--echo #
--echo # First part
--echo #
#
# This part verifies the splittable DROP TABLE behavior in client sessions by
# creating three tables (one regular and two temporary), setting session
# GTID_NEXT to an specific GTID and then trying to issue an DROP TABLE
# statement containing the combinations of at least two tables.
#
# As DROP statements with both regular and temporary tables or with
# transactional and non transactional temporary tables are split before
# sending to binlog, the following DROP statements must return an error to the
# client session because of being considered unsafe for GTID enforcement as it
# would be split into two (or three) statements to be sent to binlog.
#
# In order to improve the test coverage, we will verify DROP TABLE statements
# with all combinations of the following:
# 1) Regular transactional table;
# 2) Regular non-transactional table;
# 3) Temporary transactional table;
# 4) Temporary non-transactional table;
# 5) Nonexistent table.
#
# With the above set we could make up to 32 possibilities (including none of
# above). But we will test the behavior only for the following combinations:
# - 18 error cases (ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_GTID_GROUP):
#   (1 | 2 | 1+2) + (3 | 4 | 3+4) + (nothing | 5)
#   (3+4) | (3+4+5)
#   (3 | 4) + 5  /* as this it not DROP TEMPORARY, nonexistent tables will be
#                   assumed as regular tables, so the DROP will be split */
# - 3 error cases (ER_BAD_TABLE_ERROR):
#   (1 | 2 | 1+2) + 5
# - 1 non-error case:
#   1+2
# Note: for ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_GTID_GROUP cases, the
# statement will not be executed and no DROP will be performed. For
# ER_BAD_TABLE_ERROR cases, the existent tables will be dropped regardless the
# error.

# Create two regular tables and two temporary tables with distinct storage engines
--source include/rpl_connection_master.inc
CREATE TABLE trans_t1 (c1 INT) ENGINE=InnoDB;
CREATE TABLE non_trans_t1 (c1 INT) ENGINE=MyISAM;
CREATE TEMPORARY TABLE temp_trans_t1 (c1 INT) ENGINE=InnoDB;
CREATE TEMPORARY TABLE temp_non_trans_t1 (c1 INT) ENGINE=MyISAM;

--echo # Error cases ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_GTID_GROUP
--let $next_gtid= '11111111-1111-1111-1111-111111111111:1'
--let $expected_error= ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_GTID_GROUP

# reg trans + reg non trans + temp trans
--let $statement= DROP TABLE trans_t1, non_trans_t1, temp_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + reg non trans + temp trans + temp non trans
--let $statement= DROP TABLE trans_t1, non_trans_t1, temp_trans_t1, temp_non_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + reg non trans + temp trans + temp non trans + inexistent
--let $statement= DROP TABLE trans_t1, non_trans_t1, temp_trans_t1, temp_non_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + reg non trans + temp trans + inexistent
--let $statement= DROP TABLE trans_t1, non_trans_t1, temp_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + reg non trans + temp non trans
--let $statement= DROP TABLE trans_t1, non_trans_t1, temp_non_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + reg non trans + temp non trans + inexistent
--let $statement= DROP TABLE trans_t1, non_trans_t1, temp_non_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + temp trans
--let $statement= DROP TABLE trans_t1, temp_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + temp trans + temp non trans
--let $statement= DROP TABLE trans_t1, temp_trans_t1, temp_non_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + temp trans + temp non trans + inexistent
--let $statement= DROP TABLE trans_t1, temp_trans_t1, temp_non_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + temp trans + inexistent
--let $statement= DROP TABLE trans_t1, temp_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + temp non trans
--let $statement= DROP TABLE trans_t1, temp_non_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg trans + temp non trans + inexistent
--let $statement= DROP TABLE trans_t1, temp_non_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg non trans + temp trans
--let $statement= DROP TABLE non_trans_t1, temp_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg non trans + temp trans + temp non trans
--let $statement= DROP TABLE non_trans_t1, temp_trans_t1, temp_non_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg non trans + temp trans + temp non trans + inexistent
--let $statement= DROP TABLE non_trans_t1, temp_trans_t1, temp_non_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg non trans + temp trans + inexistent
--let $statement= DROP TABLE non_trans_t1, temp_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg non trans + temp non trans
--let $statement= DROP TABLE non_trans_t1, temp_non_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# reg non trans + temp non trans + inexistent
--let $statement= DROP TABLE non_trans_t1, temp_non_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# temp trans + temp non trans
--let $statement= DROP TABLE temp_trans_t1, temp_non_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# temp trans + temp non trans + inexistent
--let $statement= DROP TABLE temp_trans_t1, temp_non_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# temp trans + inexistent
--let $statement= DROP TABLE temp_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# temp non trans + inexistent
--let $statement= DROP TABLE temp_non_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc

--echo # Error cases ER_BAD_TABLE_ERROR
--let $expected_error= ER_BAD_TABLE_ERROR

# reg trans + reg non trans + inexistent
--let $next_gtid= '11111111-1111-1111-1111-111111111111:1'
--let $statement= DROP TABLE trans_t1, non_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# recreate the trans table
SET GTID_NEXT= AUTOMATIC;
CREATE TABLE trans_t1 (c1 INT) ENGINE=InnoDB;
# reg trans + inexistent
--let $next_gtid= '11111111-1111-1111-1111-111111111111:2'
--let $statement= DROP TABLE trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc
# recreate the non trans table
SET GTID_NEXT= AUTOMATIC;
CREATE TABLE non_trans_t1 (c1 INT) ENGINE=MyISAM;
# reg non trans + inexistent
--let $next_gtid= '11111111-1111-1111-1111-111111111111:3'
--let $statement= DROP TABLE non_trans_t1, non_existent
--source extra/rpl_tests/rpl_gtid_drop_table.inc

SET GTID_NEXT= AUTOMATIC;
CREATE TABLE trans_t1 (c1 INT) ENGINE=InnoDB;
CREATE TABLE non_trans_t1 (c1 INT) ENGINE=MyISAM;

--echo # Non-error cases
--let $expected_error=

# reg trans + reg non trans
--let $next_gtid= '11111111-1111-1111-1111-111111111111:4'
--let $statement= DROP TABLE trans_t1, non_trans_t1
--source extra/rpl_tests/rpl_gtid_drop_table.inc

SET GTID_NEXT= AUTOMATIC;
CREATE TABLE trans_t1 (c1 INT) ENGINE=InnoDB;


--echo #
--echo # Second part
--echo #
#
# The MySQL server cannot evaluate if an inexistent temporary table is
# transactional or not. Before the fix for BUG#17620053, the inexistent
# temporary tables were assumed to be transactional.
#
# This assumption could lead to a split if, for example, you issue a DROP
# TEMPORARY TABLE for two existent non-transactional temporary tables in the
# master (will binlog only one statement) but a filter made one of the
# temporary tables inexistent on the slave side (will binlog two statements:
# one with the existent non-transactional table and other with the inexistent
# table assumed to be transactional).
#
# As this test has a filter in its slave configuration like this:
# '--replicate-ignore-table=test.temp_ignore', all statements containing the
# 'test.temp_ignore' temporary table alone wont be executed by the SQL slave
# thread. So, the CREATE TABLE statements for 'temp_ignore' table will be
# executed only on the master.
#
# Issuing a DROP TEMPORARY TABLE statement in the master containing the two
# non-transaction temporary tables would result in a single binlog statement,
# as the two tables are non-transactional ones.
#
# In the slave, because of the filter, the non-replicated table will be
# assumed unknown. With the fix for BUG#17620053, the unknown tables will
# be assumed as transactional only if at least one transactional table is
# dropped. If the DROP recognizes only non-transactional tables, the unknown
# temporary tables will be assumed non-transactional, avoiding splitting the
# statement.

# Create an additional non-transactional temporary table that will not be
# replicated due to the replication filter, only t1 will be replicated.
CREATE TEMPORARY TABLE temp_ignore (c1 INT) ENGINE=MyISAM;
# Drop the two non-transactional temp tables
DROP TEMPORARY TABLE IF EXISTS temp_ignore, temp_non_trans_t1;
# Sync to know that everything was replicated
--source include/sync_slave_sql_with_master.inc
# Back to the 'master' connection
--source include/rpl_connection_master.inc
# Create temp_ignore table again, but with InnoDB storage engine
CREATE TEMPORARY TABLE temp_ignore (c1 INT) ENGINE=InnoDB;
# Drop the two transactional temp tables
DROP TEMPORARY TABLE IF EXISTS temp_ignore, temp_trans_t1;
# Sync to know that everything was replicated
--source include/sync_slave_sql_with_master.inc

--echo #
--echo # Third part
--echo #
#
# This part was adapted from rpl_create_drop_temp_table.test
#
# As we use three server topology, when the slave (mysqld 2) detects the
# master (mysqld 1) has restarted it will drop the temporary tables and
# will binlog the DROP TABLE statements that will be replicated to
# the third server (mysqld 3).
#
# As the DROP of temporary table in the slave side groups the tables
# by pseudo-threadid and by database, we will use two sessions on master,
# creating three sets of temporary tables, each set on a distinct database.
#
# The first set contains two tables with distinct storage engines, the
# second set contains a single table and the third set contains two tables
# with the same storage engine.
#
--source include/rpl_connection_master.inc
call mtr.add_suppression("InnoDB: Error: table .* does not exist in the InnoDB internal");
CREATE DATABASE test2;
CREATE DATABASE test3;

# Create two temporary tables with distinct storage engines in 'test'
# This should generate two DROP statements
use test;
CREATE TEMPORARY TABLE temp_trans_t1 (c1 INT) ENGINE=InnoDB;
CREATE TEMPORARY TABLE temp_non_trans_t1 (c1 INT) ENGINE=MyISAM;
# Create one temporary table with transactional storage engine in 'test2'
# This should generate only one DROP statement
USE test2;
CREATE TEMPORARY TABLE temp_trans_t1 (c1 INT) ENGINE=InnoDB;
# Create two temporary tables with transactional storage engine in 'test3'
# This should generate only one DROP statement with the two tables
USE test3;
CREATE TEMPORARY TABLE temp_trans_t1 (c1 INT) ENGINE=InnoDB;
CREATE TEMPORARY TABLE temp_trans_t2 (c1 INT) ENGINE=InnoDB;

# Create two temporary tables with distinct storage engines in 'test'
# in another client session. This should generate two DROP statements
--source include/rpl_connection_master1.inc
use test;
CREATE TEMPORARY TABLE temp_trans_t1 (c1 INT) ENGINE=InnoDB;
CREATE TEMPORARY TABLE temp_non_trans_t1 (c1 INT) ENGINE=MyISAM;
# Create one temporary table with non-transactional storage engine in 'test2'
# This should generate only one DROP statement
USE test2;
CREATE TEMPORARY TABLE temp_non_trans_t1 (c1 INT) ENGINE=MyISAM;
# Create two temporary tables with non-transactional storage engine in 'test3'
# This should generate only one DROP statement with the two tables
USE test3;
CREATE TEMPORARY TABLE temp_non_trans_t1 (c1 INT) ENGINE=MyISAM;
CREATE TEMPORARY TABLE temp_non_trans_t2 (c1 INT) ENGINE=MyISAM;

# Sync to know that everything was replicated
--source include/sync_slave_sql_with_master.inc

# Stop slave io thread
--source include/stop_slave_io.inc

# Kill Master so that it does not go through THD::cleanup logic. Hence it does
# not generate "drop temporary" query for 'temp' tables.
--let $rpl_server_number= 1
--let $rpl_force_stop=1
--source include/rpl_stop_server.inc

# Restart Master (generates Format Description event which tells slave to
# drop all temporary tables)
--source include/rpl_start_server.inc

# Start and sync slave IO thread
--source include/rpl_connection_slave.inc
--source include/start_slave_io.inc
--source include/rpl_connection_master.inc
--source include/sync_slave_io_with_master.inc

# Wait for slave thread to apply all events (including the newly generated
# FormatDescription event which tells slave SQL thread to drop all temporary
--let $show_statement= SHOW PROCESSLIST
--let $field= State
--let $condition= 'Slave has read all relay log; waiting for the slave I/O thread to update it';
--source include/wait_show_condition.inc

# Now we verify slave_open_temp_tables, it should be '0'
--let $var_value= query_get_value(SHOW STATUS LIKE 'Slave_open_temp_tables', Value, 1)
--let $assert_text= Slave_open_temp_tables should be 0
--let $assert_cond= $var_value = 0
--source include/assert.inc

# Cleanup replication
--source include/rpl_connection_master.inc
USE test;
DROP TABLE trans_t1;
DROP DATABASE test2;
DROP DATABASE test3;
--source include/rpl_end.inc

Filemanager

Name Type Size Permission Actions
disabled.def File 732 B 0644
rpl_000010-slave.opt File 34 B 0644
rpl_000010.test File 511 B 0644
rpl_000011.test File 509 B 0644
rpl_000013.test File 1.52 KB 0644
rpl_000017.test File 1.03 KB 0644
rpl_4threads_deadlock.test File 4.52 KB 0644
rpl_DML_error.test File 1.96 KB 0644
rpl_EE_err.test File 105 B 0644
rpl_LD_INFILE.test File 1.19 KB 0644
rpl_alter.test File 563 B 0644
rpl_alter_db.test File 434 B 0644
rpl_alter_repository.test File 12.79 KB 0644
rpl_alter_user.test File 3.84 KB 0644
rpl_apply_binlog_with_anonymous_gtid.test File 2.56 KB 0644
rpl_apply_binlog_with_anonymous_gtid_when_gtid_mode_on.test File 2.77 KB 0644
rpl_apply_binlog_with_gtid_when_gtid_mode_off.test File 2.77 KB 0644
rpl_auto_increment-master.opt File 56 B 0644
rpl_auto_increment.test File 288 B 0644
rpl_auto_increment_11932.test File 1.43 KB 0644
rpl_auto_increment_bug33029.test File 1.96 KB 0644
rpl_auto_increment_bug45679.test File 1.6 KB 0644
rpl_auto_increment_update_failure.test File 7.26 KB 0644
rpl_autogen_query_multi_byte_char.test File 3.09 KB 0644
rpl_autoinc_lock_style.test File 1.91 KB 0644
rpl_avoid_temporal_upgrade.test File 4.62 KB 0644
rpl_begin_commit_rollback-master.opt File 32 B 0644
rpl_begin_commit_rollback-slave.opt File 31 B 0644
rpl_begin_commit_rollback.test File 9.41 KB 0644
rpl_binlog_corruption.test File 1.55 KB 0644
rpl_binlog_errors-master.opt File 23 B 0644
rpl_binlog_errors.test File 191 B 0644
rpl_binlog_failed_drop_table-slave.opt File 62 B 0644
rpl_binlog_failed_drop_table.test File 2.39 KB 0644
rpl_binlog_format_errors-master.opt File 54 B 0644
rpl_binlog_format_errors-slave.opt File 29 B 0644
rpl_binlog_format_errors.test File 18.17 KB 0644
rpl_binlog_gcommit_options-master.opt File 60 B 0644
rpl_binlog_gcommit_options.test File 1.61 KB 0644
rpl_binlog_grant.test File 2.19 KB 0644
rpl_binlog_index.test File 8.27 KB 0644
rpl_bit.test File 3.49 KB 0644
rpl_bit_npk.test File 4.16 KB 0644
rpl_blackhole.test File 3.53 KB 0644
rpl_bug26395.test File 3.04 KB 0644
rpl_bug31076.test File 7.26 KB 0644
rpl_bug33931-master.opt File 16 B 0644
rpl_bug33931.test File 1.51 KB 0644
rpl_bug37426.test File 691 B 0644
rpl_bug38694-slave.opt File 59 B 0644
rpl_bug38694.test File 412 B 0644
rpl_bug41902-slave.opt File 45 B 0644
rpl_bug41902.test File 1.56 KB 0644
rpl_change_master.test File 2.4 KB 0644
rpl_change_master_crash_safe-slave.opt File 31 B 0644
rpl_change_master_crash_safe.test File 420 B 0644
rpl_change_master_dbug.test File 1.4 KB 0644
rpl_charset.test File 66 B 0644
rpl_charset_sjis.test File 667 B 0644
rpl_check_gtid.test File 23.31 KB 0644
rpl_checksum-master.opt File 24 B 0644
rpl_checksum.test File 7.68 KB 0644
rpl_checksum_cache.test File 6.99 KB 0644
rpl_checksum_undef.test File 1.26 KB 0644
rpl_circular_for_4_hosts-master.opt File 16 B 0644
rpl_circular_for_4_hosts.cnf File 311 B 0644
rpl_circular_for_4_hosts.test File 10.69 KB 0644
rpl_colSize.test File 7.35 KB 0644
rpl_commit_after_flush.test File 215 B 0644
rpl_concurrency_error-master.opt File 29 B 0644
rpl_concurrency_error.test File 4.29 KB 0644
rpl_conditional_comments.test File 2.73 KB 0644
rpl_connection.test File 748 B 0644
rpl_corruption-master.opt File 51 B 0644
rpl_corruption-slave.opt File 54 B 0644
rpl_corruption.test File 4.69 KB 0644
rpl_crash_safe_master.test File 8.23 KB 0644
rpl_crc_check-master.opt File 23 B 0644
rpl_crc_check.test File 2.34 KB 0644
rpl_create_database-master.opt File 69 B 0644
rpl_create_database-slave.opt File 75 B 0644
rpl_create_database.test File 2.02 KB 0644
rpl_create_drop_temp_table.test File 3.08 KB 0644
rpl_create_if_not_exists.test File 6.1 KB 0644
rpl_create_tmp_table_if_not_exists.test File 1.58 KB 0644
rpl_critical_errors.test File 1.81 KB 0644
rpl_cross_version-master.opt File 44 B 0644
rpl_cross_version.test File 1.84 KB 0644
rpl_current_user-master.opt File 16 B 0644
rpl_current_user.cnf File 124 B 0644
rpl_current_user.test File 7.93 KB 0644
rpl_db_stmts_ignored.test File 2.96 KB 0644
rpl_ddl.test File 1.39 KB 0644
rpl_deadlock_innodb-slave.opt File 85 B 0644
rpl_deadlock_innodb.test File 325 B 0644
rpl_delayed_slave.test File 12.63 KB 0644
rpl_delete_no_where.test File 333 B 0644
rpl_do_db_filter-slave.opt File 81 B 0644
rpl_do_db_filter.test File 616 B 0644
rpl_do_grant.test File 11.33 KB 0644
rpl_do_table_filter_insensitive-master.opt File 27 B 0644
rpl_do_table_filter_insensitive-slave.opt File 110 B 0644
rpl_do_table_filter_insensitive.test File 299 B 0644
rpl_do_table_filter_sensitive-slave.opt File 82 B 0644
rpl_do_table_filter_sensitive.test File 539 B 0644
rpl_double_free_bug.test File 2.44 KB 0644
rpl_drop.test File 311 B 0644
rpl_drop_db.test File 1.33 KB 0644
rpl_drop_db_fail.test File 1.12 KB 0644
rpl_drop_temp-slave.opt File 39 B 0644
rpl_drop_temp.test File 2.26 KB 0644
rpl_drop_temp_gtid.test File 1.51 KB 0644
rpl_drop_temp_tbl_with_rewrite_db-slave.opt File 40 B 0644
rpl_drop_temp_tbl_with_rewrite_db.test File 2.85 KB 0644
rpl_drop_view.test File 831 B 0644
rpl_dual_pos_advance-master.opt File 16 B 0644
rpl_dual_pos_advance.test File 3.7 KB 0644
rpl_dump_thread_kill.test File 2.23 KB 0644
rpl_empty_master_host.test File 1.79 KB 0644
rpl_empty_multi_update.test File 2.84 KB 0644
rpl_err_ignoredtable-slave.opt File 99 B 0644
rpl_err_ignoredtable.test File 2.17 KB 0644
rpl_events.test File 4.58 KB 0644
rpl_extra_col_master_innodb.test File 450 B 0644
rpl_extra_col_master_myisam.test File 416 B 0644
rpl_extra_col_slave_innodb.test File 263 B 0644
rpl_extra_col_slave_myisam.test File 229 B 0644
rpl_extra_row_data-master.opt File 36 B 0644
rpl_extra_row_data-slave.opt File 38 B 0644
rpl_extra_row_data.test File 1.91 KB 0644
rpl_failed_optimize.test File 284 B 0644
rpl_filter_database-slave.opt File 55 B 0644
rpl_filter_database.test File 2.94 KB 0644
rpl_filter_tables_not_exist-slave.opt File 186 B 0644
rpl_filter_tables_not_exist.test File 10.46 KB 0644
rpl_filter_warnings-slave.opt File 103 B 0644
rpl_filter_warnings.test File 2.34 KB 0644
rpl_flush_logs-master.opt File 49 B 0644
rpl_flush_logs.test File 6.23 KB 0644
rpl_flushlog_loop-master.opt File 21 B 0644
rpl_flushlog_loop-slave.opt File 21 B 0644
rpl_flushlog_loop.test File 1.51 KB 0644
rpl_foreign_key_innodb.test File 144 B 0644
rpl_free_items-slave.opt File 37 B 0644
rpl_free_items.test File 566 B 0644
rpl_function_defaults.test File 2.76 KB 0644
rpl_gap_in_retrieved_gtid_set.test File 3.54 KB 0644
rpl_general_log.test File 975 B 0644
rpl_geometry.test File 582 B 0644
rpl_get_lock.test File 1.44 KB 0644
rpl_get_master_version_and_clock-slave.opt File 24 B 0644
rpl_get_master_version_and_clock.test File 3.04 KB 0644
rpl_grant.test File 9.33 KB 0644
rpl_grant_plugin-master.opt File 35 B 0644
rpl_grant_plugin-slave.opt File 35 B 0644
rpl_grant_plugin.test File 2.67 KB 0644
rpl_group_commit_deadlock.test File 1.25 KB 0644
rpl_gtid_binary_log_as_relay_log.test File 2.15 KB 0644
rpl_gtid_binlog_errors-master.opt File 23 B 0644
rpl_gtid_binlog_errors.test File 186 B 0644
rpl_gtid_delete_memory_table_after_start_server.test File 5.91 KB 0644
rpl_gtid_deleted_binlog_fail_to_connect.test File 5.27 KB 0644
rpl_gtid_do_table_filter_insensitive-master.opt File 27 B 0644
rpl_gtid_do_table_filter_insensitive-slave.opt File 110 B 0644
rpl_gtid_do_table_filter_insensitive.test File 291 B 0644
rpl_gtid_do_table_filter_sensitive-slave.opt File 82 B 0644
rpl_gtid_do_table_filter_sensitive.test File 532 B 0644
rpl_gtid_drop_mem_table.cnf File 155 B 0644
rpl_gtid_drop_mem_table.test File 9.79 KB 0644
rpl_gtid_drop_table.cnf File 159 B 0644
rpl_gtid_drop_table.test File 14.74 KB 0644
rpl_gtid_empty_transaction.cnf File 465 B 0644
rpl_gtid_empty_transaction.test File 8.92 KB 0644
rpl_gtid_execution-master.opt File 87 B 0644
rpl_gtid_execution-slave.opt File 87 B 0644
rpl_gtid_execution.test File 24.44 KB 0644
rpl_gtid_failover.cnf File 320 B 0644
rpl_gtid_failover.test File 2.11 KB 0644
rpl_gtid_heartbeat_2slave.cnf File 130 B 0644
rpl_gtid_heartbeat_2slave.test File 339 B 0644
rpl_gtid_ignore_table_filter_insensitive-master.opt File 27 B 0644
rpl_gtid_ignore_table_filter_insensitive-slave.opt File 154 B 0644
rpl_gtid_ignore_table_filter_insensitive.test File 295 B 0644
rpl_gtid_ignore_table_filter_sensitive-slave.opt File 127 B 0644
rpl_gtid_ignore_table_filter_sensitive.test File 536 B 0644
rpl_gtid_loaddata_s-slave.opt File 24 B 0644
rpl_gtid_loaddata_s.test File 281 B 0644
rpl_gtid_mode.test File 10.74 KB 0644
rpl_gtid_mode_off_new_master.test File 2.4 KB 0644
rpl_gtid_mode_on_new_master.test File 1.58 KB 0644
rpl_gtid_mts_relay_log_recovery_auto_pos_on_off-master.opt File 62 B 0644
rpl_gtid_mts_relay_log_recovery_auto_pos_on_off-slave.opt File 201 B 0644
rpl_gtid_mts_relay_log_recovery_auto_pos_on_off.test File 2.07 KB 0644
rpl_gtid_parallel.test File 4.7 KB 0644
rpl_gtid_purged_fail_to_connect-master.opt File 86 B 0644
rpl_gtid_purged_fail_to_connect-slave.opt File 86 B 0644
rpl_gtid_purged_fail_to_connect.test File 6.62 KB 0644
rpl_gtid_purged_maintained.test File 6.08 KB 0644
rpl_gtid_replay_relaylog.test File 3.23 KB 0644
rpl_gtid_row_event_max_size-master.opt File 36 B 0644
rpl_gtid_row_event_max_size-slave.opt File 36 B 0644
rpl_gtid_row_event_max_size.test File 394 B 0644
rpl_gtid_row_show_relaylog_events.test File 426 B 0644
rpl_gtid_server_sighup.test File 4.46 KB 0644
rpl_gtid_sql_until_before_after.test File 7.3 KB 0644
rpl_gtid_stm_insert_delayed.test File 83 B 0644
rpl_gtid_stm_mix_show_relaylog_events.test File 430 B 0644
rpl_gtid_temp_table.test File 5.02 KB 0644
rpl_gtid_transaction_split_across_relay_logs.cnf File 275 B 0644
rpl_gtid_transaction_split_across_relay_logs.test File 3.32 KB 0644
rpl_gtid_validate_slave_gtids.test File 5.46 KB 0644
rpl_gtids_restart_slave_io_lost_trx.test File 498 B 0644
rpl_heartbeat-master.opt File 16 B 0644
rpl_heartbeat.test File 6.08 KB 0644
rpl_heartbeat_2slaves.cnf File 130 B 0644
rpl_heartbeat_2slaves.test File 89 B 0644
rpl_heartbeat_basic.cnf File 79 B 0644
rpl_heartbeat_basic.test File 22.74 KB 0644
rpl_heartbeat_ssl.test File 1.86 KB 0644
rpl_idempotency.test File 3.15 KB 0644
rpl_ignore_db_filter-master.opt File 27 B 0644
rpl_ignore_db_filter-slave.opt File 54 B 0644
rpl_ignore_db_filter.test File 376 B 0644
rpl_ignore_grant-slave.opt File 38 B 0644
rpl_ignore_grant.test File 2.08 KB 0644
rpl_ignore_revoke-slave.opt File 38 B 0644
rpl_ignore_revoke.test File 1.68 KB 0644
rpl_ignore_table-slave.opt File 139 B 0644
rpl_ignore_table.test File 4.95 KB 0644
rpl_ignore_table_filter_insensitive-master.opt File 27 B 0644
rpl_ignore_table_filter_insensitive-slave.opt File 154 B 0644
rpl_ignore_table_filter_insensitive.test File 302 B 0644
rpl_ignore_table_filter_sensitive-slave.opt File 127 B 0644
rpl_ignore_table_filter_sensitive.test File 542 B 0644
rpl_ignore_table_update-slave.opt File 44 B 0644
rpl_ignore_table_update.test File 976 B 0644
rpl_incident-master.opt File 69 B 0644
rpl_incident.test File 1.17 KB 0644
rpl_init_slave-slave.opt File 46 B 0644
rpl_init_slave.test File 862 B 0644
rpl_init_slave_errors.test File 3.25 KB 0644
rpl_innodb-master.opt File 29 B 0644
rpl_innodb_bug28430-master.opt File 29 B 0644
rpl_innodb_bug28430-slave.opt File 29 B 0644
rpl_innodb_bug28430.test File 5.46 KB 0644
rpl_innodb_bug30888.test File 1.68 KB 0644
rpl_innodb_mixed_ddl.test File 405 B 0644
rpl_innodb_mixed_dml.test File 405 B 0644
rpl_insert.test File 1.4 KB 0644
rpl_insert_id-master.opt File 33 B 0644
rpl_insert_id-slave.opt File 33 B 0644
rpl_insert_id.test File 244 B 0644
rpl_insert_id_pk.test File 247 B 0644
rpl_insert_ignore.test File 533 B 0644
rpl_insert_on_update.test File 1.43 KB 0644
rpl_invoked_features-master.opt File 32 B 0644
rpl_invoked_features.test File 8.13 KB 0644
rpl_ip_mix-master.opt File 16 B 0644
rpl_ip_mix.cnf File 1.29 KB 0644
rpl_ip_mix.test File 1.82 KB 0644
rpl_ip_mix2-master.opt File 16 B 0644
rpl_ip_mix2.cnf File 1.29 KB 0644
rpl_ip_mix2.test File 2.13 KB 0644
rpl_ipv4_as_ipv6.cnf File 1.3 KB 0644
rpl_ipv4_as_ipv6.test File 2.44 KB 0644
rpl_ipv6.cnf File 1.29 KB 0644
rpl_ipv6.test File 1.93 KB 0644
rpl_kill_query-slave.opt File 76 B 0644
rpl_kill_query.test File 3.31 KB 0644
rpl_killed_ddl-master.opt File 44 B 0644
rpl_killed_ddl.test File 8.69 KB 0644
rpl_known_bugs_detection-master.opt File 71 B 0644
rpl_known_bugs_detection.test File 3.34 KB 0644
rpl_lcase_tblnames_rewrite_db-slave.opt File 69 B 0644
rpl_lcase_tblnames_rewrite_db.test File 1.39 KB 0644
rpl_loaddata.test File 198 B 0644
rpl_loaddata_charset.test File 1.42 KB 0644
rpl_loaddata_fatal-slave.opt File 50 B 0644
rpl_loaddata_fatal.test File 1014 B 0644
rpl_loaddata_m-master.opt File 24 B 0644
rpl_loaddata_m.test File 1.36 KB 0644
rpl_loaddata_map-master.opt File 70 B 0644
rpl_loaddata_map-slave.opt File 47 B 0644
rpl_loaddata_map.test File 1.87 KB 0644
rpl_loaddata_s-slave.opt File 24 B 0644
rpl_loaddata_s.test File 285 B 0644
rpl_loaddata_simple.test File 379 B 0644
rpl_loaddata_symlink-master.opt File 58 B 0644
rpl_loaddata_symlink-master.sh File 132 B 0755
rpl_loaddata_symlink-slave.opt File 58 B 0644
rpl_loaddata_symlink-slave.sh File 130 B 0755
rpl_loaddata_symlink.test File 604 B 0644
rpl_loaddatalocal.test File 7.34 KB 0644
rpl_loadfile.test File 3.82 KB 0644
rpl_locale.test File 578 B 0644
rpl_log_pos.test File 1.35 KB 0644
rpl_lost_events_on_rotate.test File 1.46 KB 0644
rpl_low_slave_net_time_out.test File 3.82 KB 0644
rpl_manual_change_index_file.test File 4.86 KB 0644
rpl_many_optimize.test File 586 B 0644
rpl_master_connection-master.opt File 35 B 0644
rpl_master_connection-slave.opt File 58 B 0644
rpl_master_connection.test File 15.52 KB 0644
rpl_master_pos_wait.test File 2.3 KB 0644
rpl_migration_crash_safe.test File 7.24 KB 0644
rpl_misc_functions-slave.sh File 83 B 0755
rpl_misc_functions.test File 3.95 KB 0644
rpl_mix_found_rows-master.opt File 33 B 0644
rpl_mix_found_rows.test File 4.17 KB 0644
rpl_mix_insert_delayed.test File 263 B 0644
rpl_mix_missing_data_on_slave.cnf File 266 B 0644
rpl_mix_missing_data_on_slave.test File 2.4 KB 0644
rpl_mixed_binlog_max_cache_size.test File 304 B 0644
rpl_mixed_bit_pk.test File 2.71 KB 0644
rpl_mixed_ddl_dml.test File 1.35 KB 0644
rpl_mixed_drop_create_temp_table.test File 674 B 0644
rpl_mixed_implicit_commit_binlog-master.opt File 21 B 0644
rpl_mixed_implicit_commit_binlog-slave.opt File 21 B 0644
rpl_mixed_implicit_commit_binlog.test File 512 B 0644
rpl_mixed_mixing_engines.test File 622 B 0644
rpl_mixed_row_innodb-master.opt File 32 B 0644
rpl_mts_debug-slave.opt File 95 B 0644
rpl_mts_debug.test File 7.32 KB 0644
rpl_mts_execute_partial_trx_with_auto_pos_off-slave.opt File 30 B 0644
rpl_mts_execute_partial_trx_with_auto_pos_off.test File 655 B 0644
rpl_mts_execute_partial_trx_with_auto_pos_on-slave.opt File 30 B 0644
rpl_mts_execute_partial_trx_with_auto_pos_on.test File 649 B 0644
rpl_mts_gtids_restart_slave_io_lost_trx-slave.opt File 57 B 0644
rpl_mts_gtids_restart_slave_io_lost_trx.test File 521 B 0644
rpl_mts_pending_max.test File 4.4 KB 0644
rpl_mts_relay_log_post_crash_recovery-slave.opt File 116 B 0644
rpl_mts_relay_log_post_crash_recovery.test File 1.51 KB 0644
rpl_mts_relay_log_recovery_on_error-slave.opt File 116 B 0644
rpl_mts_relay_log_recovery_on_error.test File 4.51 KB 0644
rpl_mts_slave_hang_with_partial_trx-slave.opt File 57 B 0644
rpl_mts_slave_hang_with_partial_trx.test File 2.45 KB 0644
rpl_mts_stop_slave-slave.opt File 30 B 0644
rpl_mts_stop_slave.test File 4.18 KB 0644
rpl_mts_stop_slave_report_pos-slave.opt File 116 B 0644
rpl_mts_stop_slave_report_pos.test File 5.2 KB 0644
rpl_multi_delete-slave.opt File 33 B 0644
rpl_multi_delete.test File 457 B 0644
rpl_multi_delete2-slave.opt File 90 B 0644
rpl_multi_delete2.test File 1.23 KB 0644
rpl_multi_engine.test File 2.23 KB 0644
rpl_multi_update.test File 111 B 0644
rpl_multi_update2-slave.opt File 42 B 0644
rpl_multi_update2.test File 674 B 0644
rpl_multi_update3.test File 638 B 0644
rpl_multi_update4-slave.opt File 31 B 0644
rpl_multi_update4.test File 1.06 KB 0644
rpl_mysql_upgrade.test File 2.24 KB 0644
rpl_mysqlbinlog_gtid_on.test File 8.36 KB 0644
rpl_name_const.test File 1.01 KB 0644
rpl_no_gtid_delete_memory_table_after_start_server.test File 3.19 KB 0644
rpl_non_direct_mixed_mixing_engines.test File 720 B 0644
rpl_non_direct_row_mixing_engines.test File 926 B 0644
rpl_non_direct_stm_mixing_engines.test File 724 B 0644
rpl_nondeterministic_functions.test File 1.57 KB 0644
rpl_not_null_innodb.test File 820 B 0644
rpl_not_null_myisam.test File 787 B 0644
rpl_optimize.test File 2.15 KB 0644
rpl_packet-master.opt File 83 B 0644
rpl_packet-slave.opt File 83 B 0644
rpl_packet.test File 11.49 KB 0644
rpl_parallel-master.opt File 17 B 0644
rpl_parallel-slave.opt File 48 B 0644
rpl_parallel.test File 1.32 KB 0644
rpl_parallel_change_master-slave.opt File 30 B 0644
rpl_parallel_change_master.test File 7.96 KB 0644
rpl_parallel_conf_limits-slave.opt File 30 B 0644
rpl_parallel_conf_limits.test File 2.88 KB 0644
rpl_parallel_conflicts-slave.opt File 30 B 0644
rpl_parallel_conflicts.test File 4.74 KB 0644
rpl_parallel_ddl-slave.opt File 30 B 0644
rpl_parallel_ddl.test File 5.33 KB 0644
rpl_parallel_innodb-master.opt File 17 B 0644
rpl_parallel_innodb-slave.opt File 51 B 0644
rpl_parallel_innodb.test File 401 B 0644
rpl_parallel_load_data-slave.opt File 30 B 0644
rpl_parallel_load_data.test File 1.27 KB 0644
rpl_parallel_multi_db-master.opt File 37 B 0644
rpl_parallel_multi_db-slave.opt File 68 B 0644
rpl_parallel_multi_db.test File 6.22 KB 0644
rpl_parallel_seconds_behind_master-slave.opt File 30 B 0644
rpl_parallel_seconds_behind_master.test File 3.6 KB 0644
rpl_parallel_show_binlog_events_purge_logs.test File 1.1 KB 0644
rpl_parallel_start_stop-slave.opt File 93 B 0644
rpl_parallel_start_stop.test File 10.2 KB 0644
rpl_parallel_switch_sequential-slave.opt File 30 B 0644
rpl_parallel_switch_sequential.test File 4.31 KB 0644
rpl_parallel_temp_query-slave.opt File 48 B 0644
rpl_parallel_temp_query.test File 4.1 KB 0644
rpl_parallel_worker_error-slave.opt File 57 B 0644
rpl_parallel_worker_error.test File 2.23 KB 0644
rpl_partition_archive.test File 313 B 0644
rpl_partition_innodb-master.opt File 29 B 0644
rpl_partition_innodb.test File 310 B 0644
rpl_partition_memory.test File 277 B 0644
rpl_partition_myisam.test File 277 B 0644
rpl_plugin_load-master.opt File 20 B 0644
rpl_plugin_load-slave.opt File 20 B 0644
rpl_plugin_load.test File 2.37 KB 0644
rpl_ps.test File 2.39 KB 0644
rpl_rbr_to_sbr.test File 1.39 KB 0644
rpl_read_old_relay_log_info.test File 1.68 KB 0644
rpl_read_only.test File 2.84 KB 0644
rpl_recovery_empty_sqlthd_pos-slave.opt File 88 B 0644
rpl_recovery_empty_sqlthd_pos.test File 2.59 KB 0644
rpl_recovery_replicate_same_server_id-slave.opt File 216 B 0644
rpl_recovery_replicate_same_server_id.test File 3.47 KB 0644
rpl_relay_log_recovery_positions.test File 4.31 KB 0644
rpl_relay_log_space_synchronization.test File 2.44 KB 0644
rpl_relay_space_innodb.test File 147 B 0644
rpl_relay_space_myisam.test File 113 B 0644
rpl_relayrotate-slave.opt File 42 B 0644
rpl_relayrotate.test File 721 B 0644
rpl_relayspace-slave.opt File 27 B 0644
rpl_relayspace.test File 1.93 KB 0644
rpl_replicate_do-slave.opt File 29 B 0644
rpl_replicate_do.test File 1.76 KB 0644
rpl_replicate_event_after_sync_stage.test File 2.05 KB 0644
rpl_replicate_ignore_db-slave.opt File 33 B 0644
rpl_replicate_ignore_db.test File 757 B 0644
rpl_replicate_rewrite_db.test File 1.57 KB 0644
rpl_report-slave.opt File 100 B 0644
rpl_report.test File 995 B 0644
rpl_report_port-master.opt File 16 B 0644
rpl_report_port.test File 2.68 KB 0644
rpl_reset_slave_fail.test File 3.17 KB 0644
rpl_rewrite_db_filter-master.opt File 27 B 0644
rpl_rewrite_db_filter-slave.opt File 64 B 0644
rpl_rewrite_db_filter.test File 443 B 0644
rpl_rewrt_db-slave.opt File 301 B 0644
rpl_rewrt_db.test File 7.32 KB 0644
rpl_rotate_gtid.test File 3.49 KB 0644
rpl_rotate_logs.cnf File 67 B 0644
rpl_rotate_logs.test File 8.76 KB 0644
rpl_rotate_purge_deadlock-master.opt File 42 B 0644
rpl_rotate_purge_deadlock.test File 3.06 KB 0644
rpl_rotate_row_trans.test File 2.86 KB 0644
rpl_row_001.test File 443 B 0644
rpl_row_4_bytes-master.opt File 87 B 0644
rpl_row_4_bytes.test File 1.08 KB 0644
rpl_row_NOW.test File 2.58 KB 0644
rpl_row_USER.test File 2.93 KB 0644
rpl_row_UUID.test File 443 B 0644
rpl_row_basic_11bugs-master.opt File 64 B 0644
rpl_row_basic_11bugs.test File 7.27 KB 0644
rpl_row_basic_2myisam.test File 197 B 0644
rpl_row_basic_3innodb.test File 286 B 0644
rpl_row_basic_8partition.test File 6.37 KB 0644
rpl_row_basic_allow_batching.test File 474 B 0644
rpl_row_binlog_max_cache_size.test File 302 B 0644
rpl_row_blob_innodb.test File 580 B 0644
rpl_row_blob_myisam.test File 546 B 0644
rpl_row_colSize.test File 6.82 KB 0644
rpl_row_conflicts.test File 924 B 0644
rpl_row_corrupt-master.opt File 67 B 0644
rpl_row_corrupt-slave.opt File 67 B 0644
rpl_row_corrupt.test File 1.22 KB 0644
rpl_row_corruption-slave.opt File 46 B 0644
rpl_row_corruption.test File 3.79 KB 0644
rpl_row_crash_safe-slave.opt File 129 B 0644
rpl_row_crash_safe.test File 802 B 0644
rpl_row_create_select.test File 733 B 0644
rpl_row_create_table.test File 7.89 KB 0644
rpl_row_delayed_ins.test File 114 B 0644
rpl_row_drop.test File 1.26 KB 0644
rpl_row_drop_create_temp_table.test File 672 B 0644
rpl_row_err_daisychain-master.opt File 20 B 0644
rpl_row_err_daisychain-slave.opt File 46 B 0644
rpl_row_event_max_size-master.opt File 36 B 0644
rpl_row_event_max_size-slave.opt File 36 B 0644
rpl_row_event_max_size.test File 402 B 0644
rpl_row_find_row.test File 3.09 KB 0644
rpl_row_flsh_tbls.test File 466 B 0644
rpl_row_func001.test File 1.45 KB 0644
rpl_row_func002.test File 3.72 KB 0644
rpl_row_func003.test File 589 B 0644
rpl_row_hash_scan.test File 7.03 KB 0644
rpl_row_hash_scan_sanity.test File 9.75 KB 0644
rpl_row_idempotency.test File 1.33 KB 0644
rpl_row_ignorable_event-master.opt File 65 B 0644
rpl_row_ignorable_event-slave.opt File 136 B 0644
rpl_row_ignorable_event.test File 6.2 KB 0644
rpl_row_image_check_for_insert_select.test File 3.03 KB 0644
rpl_row_img.cnf File 370 B 0644
rpl_row_img_blobs.cnf File 37 B 0644
rpl_row_img_blobs.test File 1.54 KB 0644
rpl_row_img_eng_full.cnf File 37 B 0644
rpl_row_img_eng_full.test File 1.16 KB 0644
rpl_row_img_eng_min.cnf File 37 B 0644
rpl_row_img_eng_min.test File 1011 B 0644
rpl_row_img_eng_noblob.cnf File 37 B 0644
rpl_row_img_eng_noblob.test File 1007 B 0644
rpl_row_img_idx_full.cnf File 37 B 0644
rpl_row_img_idx_full.test File 829 B 0644
rpl_row_img_idx_min.cnf File 37 B 0644
rpl_row_img_idx_min.test File 947 B 0644
rpl_row_img_idx_noblob.cnf File 37 B 0644
rpl_row_img_idx_noblob.test File 934 B 0644
rpl_row_img_misc.test File 1006 B 0644
rpl_row_img_sanity.test File 30.07 KB 0644
rpl_row_implicit_commit_binlog-master.opt File 21 B 0644
rpl_row_implicit_commit_binlog-slave.opt File 21 B 0644
rpl_row_implicit_commit_binlog.test File 510 B 0644
rpl_row_inexist_tbl.test File 1.26 KB 0644
rpl_row_insert_delayed.test File 261 B 0644
rpl_row_lcase_tblnames-slave.opt File 161 B 0644
rpl_row_lcase_tblnames.test File 391 B 0644
rpl_row_loaddata_concurrent.test File 504 B 0644
rpl_row_log-master.opt File 24 B 0644
rpl_row_log-slave.opt File 1 B 0644
rpl_row_log.test File 692 B 0644
rpl_row_log_innodb-master.opt File 56 B 0644
rpl_row_log_innodb.test File 498 B 0644
rpl_row_max_relay_size.test File 360 B 0644
rpl_row_merge_engine.test File 1.49 KB 0644
rpl_row_mixing_engines.test File 719 B 0644
rpl_row_mts_crash_safe-slave.opt File 169 B 0644
rpl_row_mts_crash_safe.test File 555 B 0644
rpl_row_mts_rec_crash_safe-slave.opt File 192 B 0644
rpl_row_mts_rec_crash_safe.test File 517 B 0644
rpl_row_mts_show_relaylog_events.test File 560 B 0644
rpl_row_mysqlbinlog-master.opt File 26 B 0644
rpl_row_mysqlbinlog.test File 10.91 KB 0644
rpl_row_rec_comp_innodb.test File 302 B 0644
rpl_row_rec_comp_myisam.test File 942 B 0644
rpl_row_record_find_myisam.test File 787 B 0644
rpl_row_reset_slave.test File 221 B 0644
rpl_row_rollback_to_savepoint.test File 735 B 0644
rpl_row_show_relaylog_events.test File 163 B 0644
rpl_row_slave_skip_error_all-slave.opt File 41 B 0644
rpl_row_slave_skip_error_all.test File 3.36 KB 0644
rpl_row_sp001.test File 4.21 KB 0644
rpl_row_sp002_innodb.test File 142 B 0644
rpl_row_sp003.test File 581 B 0644
rpl_row_sp005.test File 3.26 KB 0644
rpl_row_sp006_InnoDB.test File 581 B 0644
rpl_row_sp007_innodb.test File 142 B 0644
rpl_row_sp008.test File 1.56 KB 0644
rpl_row_sp009.test File 2.69 KB 0644
rpl_row_sp010.test File 2.05 KB 0644
rpl_row_sp011-master.opt File 33 B 0644
rpl_row_sp011.test File 3.57 KB 0644
rpl_row_sp012.test File 2.26 KB 0644
rpl_row_tabledefs_2myisam.test File 229 B 0644
rpl_row_tabledefs_3innodb.test File 263 B 0644
rpl_row_tbl_metadata.test File 10.79 KB 0644
rpl_row_trig001.test File 3.72 KB 0644
rpl_row_trig002.test File 2.63 KB 0644
rpl_row_trig003.test File 5.73 KB 0644
rpl_row_trig004.test File 964 B 0644
rpl_row_trunc_temp.test File 907 B 0644
rpl_row_unsafe_funcs.test File 730 B 0644
rpl_row_until.test File 6 KB 0644
rpl_row_utf16.test File 784 B 0644
rpl_row_utf32.test File 1.25 KB 0644
rpl_row_view01.test File 3.67 KB 0644
rpl_row_wide_table.test File 3.8 KB 0644
rpl_savepoint.test File 1.05 KB 0644
rpl_sbm_fake_rotate_event.test File 2.41 KB 0644
rpl_sbm_previous_gtid_event-slave.opt File 26 B 0644
rpl_sbm_previous_gtid_event.test File 3.74 KB 0644
rpl_seconds_behind_master.test File 7.04 KB 0644
rpl_semi_sync-master.opt File 37 B 0644
rpl_semi_sync-slave.opt File 21 B 0644
rpl_semi_sync.test File 19.28 KB 0644
rpl_semi_sync_deadlock-master.opt File 21 B 0644
rpl_semi_sync_deadlock-slave.opt File 21 B 0644
rpl_semi_sync_deadlock.test File 2.08 KB 0644
rpl_semi_sync_event-master.opt File 42 B 0644
rpl_semi_sync_event-slave.opt File 21 B 0644
rpl_semi_sync_event.test File 3.05 KB 0644
rpl_semi_sync_future_logpos-master.opt File 21 B 0644
rpl_semi_sync_future_logpos-slave.opt File 21 B 0644
rpl_semi_sync_future_logpos.test File 2.45 KB 0644
rpl_semi_sync_group_commit_deadlock-master.opt File 21 B 0644
rpl_semi_sync_group_commit_deadlock-slave.opt File 21 B 0644
rpl_semi_sync_group_commit_deadlock.test File 1.37 KB 0644
rpl_semi_sync_non_group_commit_deadlock-master.opt File 21 B 0644
rpl_semi_sync_non_group_commit_deadlock-slave.opt File 21 B 0644
rpl_semi_sync_non_group_commit_deadlock.test File 1.46 KB 0644
rpl_semi_sync_shutdown_hang-master.opt File 21 B 0644
rpl_semi_sync_shutdown_hang-slave.opt File 21 B 0644
rpl_semi_sync_shutdown_hang.test File 2.2 KB 0644
rpl_semi_sync_uninstall_plugin-master.opt File 21 B 0644
rpl_semi_sync_uninstall_plugin-slave.opt File 21 B 0644
rpl_semi_sync_uninstall_plugin.test File 5.81 KB 0644
rpl_sequential-master.opt File 17 B 0644
rpl_sequential-slave.opt File 18 B 0644
rpl_sequential.test File 605 B 0644
rpl_server_id1.test File 664 B 0644
rpl_server_id2-master.opt File 16 B 0644
rpl_server_id2-slave.opt File 71 B 0644
rpl_server_id2.test File 1.97 KB 0644
rpl_server_id_ignore-master.opt File 16 B 0644
rpl_server_id_ignore-slave.opt File 71 B 0644
rpl_server_id_ignore.test File 4.13 KB 0644
rpl_server_uuid.cnf File 172 B 0644
rpl_server_uuid.test File 12.66 KB 0644
rpl_session_var.test File 1.91 KB 0644
rpl_set_charset.test File 1.12 KB 0644
rpl_set_null_innodb.test File 220 B 0644
rpl_set_null_myisam.test File 186 B 0644
rpl_show_errors.test File 3.86 KB 0644
rpl_show_master_info_file-master.opt File 49 B 0644
rpl_show_master_info_file.test File 666 B 0644
rpl_show_slave_hosts.cnf File 229 B 0644
rpl_show_slave_hosts.test File 1.61 KB 0644
rpl_show_slave_running.test File 3.32 KB 0644
rpl_show_slave_status_deadlock.test File 2.54 KB 0644
rpl_skip_ddl_errors_cli-slave.opt File 42 B 0644
rpl_skip_ddl_errors_cli.test File 319 B 0644
rpl_skip_error-slave.opt File 24 B 0644
rpl_skip_error.test File 4.48 KB 0644
rpl_skip_incident-master.opt File 53 B 0644
rpl_skip_incident-slave.opt File 24 B 0644
rpl_skip_incident.test File 749 B 0644
rpl_skip_slave_err_warnings-slave.opt File 129 B 0644
rpl_skip_slave_err_warnings.test File 1.48 KB 0644
rpl_slave_grp_exec.test File 6.05 KB 0644
rpl_slave_load_in.test File 1.82 KB 0644
rpl_slave_load_remove_tmpfile.test File 3.18 KB 0644
rpl_slave_load_tmpdir_not_exist-master.opt File 16 B 0644
rpl_slave_load_tmpdir_not_exist-slave.opt File 35 B 0644
rpl_slave_load_tmpdir_not_exist.test File 782 B 0644
rpl_slave_skip.test File 7.93 KB 0644
rpl_slave_start.test File 1.34 KB 0644
rpl_slave_status.test File 2.32 KB 0644
rpl_slow_query_log-slave.opt File 61 B 0644
rpl_slow_query_log.test File 11.12 KB 0644
rpl_sp-master.opt File 36 B 0644
rpl_sp-slave.opt File 36 B 0644
rpl_sp.test File 17.9 KB 0644
rpl_sp004.test File 2.83 KB 0644
rpl_sp_effects-master.opt File 36 B 0644
rpl_sp_effects-slave.opt File 36 B 0644
rpl_sp_effects.test File 4.89 KB 0644
rpl_sp_privileges.test File 4.54 KB 0644
rpl_spec_variables-slave.opt File 9 B 0644
rpl_spec_variables.test File 8.61 KB 0644
rpl_special_charset-master.opt File 29 B 0644
rpl_special_charset-slave.opt File 29 B 0644
rpl_special_charset.test File 1.17 KB 0644
rpl_sporadic_master-master.opt File 55 B 0644
rpl_sporadic_master.test File 929 B 0644
rpl_sql_thread_error.test File 1.84 KB 0644
rpl_sql_thread_killed_waiting_commit_lock-slave.opt File 24 B 0644
rpl_sql_thread_killed_waiting_commit_lock.test File 4.85 KB 0644
rpl_ssl.test File 3.55 KB 0644
rpl_ssl1.test File 3.22 KB 0644
rpl_stm_000001.test File 4.18 KB 0644
rpl_stm_EE_err2.test File 277 B 0644
rpl_stm_auto_increment_bug33029.test File 2.9 KB 0644
rpl_stm_binlog_max_cache_size.test File 308 B 0644
rpl_stm_conflicts.test File 165 B 0644
rpl_stm_drop_create_temp_table.test File 678 B 0644
rpl_stm_flsh_tbls.test File 210 B 0644
rpl_stm_found_rows.test File 3.62 KB 0644
rpl_stm_ignore-slave.opt File 23 B 0644
rpl_stm_ignore.test File 3.11 KB 0644
rpl_stm_implicit_commit_binlog-master.opt File 21 B 0644
rpl_stm_implicit_commit_binlog-slave.opt File 21 B 0644
rpl_stm_implicit_commit_binlog.test File 516 B 0644
rpl_stm_innodb.test File 375 B 0644
rpl_stm_insert_delayed.test File 90 B 0644
rpl_stm_lcase_tblnames-slave.opt File 161 B 0644
rpl_stm_lcase_tblnames.test File 406 B 0644
rpl_stm_loaddata_concurrent.test File 578 B 0644
rpl_stm_loadfile.test File 1.08 KB 0644
rpl_stm_log-master.opt File 16 B 0644
rpl_stm_log-slave.opt File 20 B 0644
rpl_stm_log.test File 294 B 0644
rpl_stm_max_relay_size.test File 342 B 0644
rpl_stm_mix_mts_show_relaylog_events.test File 575 B 0644
rpl_stm_mix_rollback_to_savepoint.test File 750 B 0644
rpl_stm_mix_show_relaylog_events.test File 166 B 0644
rpl_stm_mixed_crash_safe-slave.opt File 129 B 0644
rpl_stm_mixed_crash_safe.test File 847 B 0644
rpl_stm_mixed_mts_crash_safe-slave.opt File 170 B 0644
rpl_stm_mixed_mts_crash_safe.test File 557 B 0644
rpl_stm_mixed_mts_rec_crash_safe-slave.opt File 192 B 0644
rpl_stm_mixed_mts_rec_crash_safe.test File 519 B 0644
rpl_stm_mixed_mts_rec_crash_safe_checksum-master.opt File 24 B 0644
rpl_stm_mixed_mts_rec_crash_safe_checksum-slave.opt File 179 B 0644
rpl_stm_mixed_mts_rec_crash_safe_checksum.test File 77 B 0644
rpl_stm_mixed_mts_rec_crash_safe_small-slave.opt File 192 B 0644
rpl_stm_mixed_mts_rec_crash_safe_small.test File 567 B 0644
rpl_stm_mixing_engines.test File 1.42 KB 0644
rpl_stm_multi_query.test File 334 B 0644
rpl_stm_no_op.test File 2.48 KB 0644
rpl_stm_relay_ign_space-slave.opt File 73 B 0644
rpl_stm_relay_ign_space.test File 16.9 KB 0644
rpl_stm_reset_slave.test File 169 B 0644
rpl_stm_sql_mode.test File 823 B 0644
rpl_stm_start_stop_slave.test File 1.35 KB 0644
rpl_stm_stop_middle_group.test File 565 B 0644
rpl_stm_until.test File 6.75 KB 0644
rpl_stm_until_pos_middle_gtid.test File 3.12 KB 0644
rpl_stm_user_variables.test File 6.4 KB 0644
rpl_stop_slave.test File 5.22 KB 0644
rpl_stop_slave_threads_error-slave.opt File 61 B 0644
rpl_stop_slave_threads_error.test File 2.33 KB 0644
rpl_switch_stm_row_mixed-master.opt File 33 B 0644
rpl_switch_stm_row_mixed.test File 19.09 KB 0644
rpl_sync-master.opt File 58 B 0644
rpl_sync-slave.opt File 151 B 0644
rpl_sync.test File 5.12 KB 0644
rpl_temp_table.test File 1.58 KB 0644
rpl_temp_table_mix_row.test File 6.51 KB 0644
rpl_temporal_fractional.test File 1.98 KB 0644
rpl_temporary.test File 9.96 KB 0644
rpl_temporary_error_table_repository.test File 3.03 KB 0644
rpl_temporary_errors-slave.opt File 97 B 0644
rpl_temporary_errors.test File 1.3 KB 0644
rpl_test_framework.cnf File 913 B 0644
rpl_test_framework.test File 3.67 KB 0644
rpl_timestamp_upgrage_55.test File 2.39 KB 0644
rpl_timezone-master.opt File 34 B 0644
rpl_timezone-slave.opt File 26 B 0644
rpl_timezone.test File 6.4 KB 0644
rpl_tmp_table_and_DDL.test File 6.8 KB 0644
rpl_trigger.test File 12.35 KB 0644
rpl_trunc_temp.test File 1.54 KB 0644
rpl_truncate_2myisam.test File 100 B 0644
rpl_truncate_3innodb.test File 133 B 0644
rpl_typeconv-master.opt File 22 B 0644
rpl_typeconv-slave.opt File 9 B 0644
rpl_typeconv.test File 2.58 KB 0644
rpl_typeconv_innodb.test File 743 B 0644
rpl_udf-master.opt File 21 B 0644
rpl_udf-slave.opt File 21 B 0644
rpl_udf.test File 694 B 0644
rpl_unknown_ignorable_event.test File 2.74 KB 0644
rpl_unsafe_statements.test File 5.98 KB 0644
rpl_user.test File 3.18 KB 0644
rpl_user_variables.test File 9.88 KB 0644
rpl_variables.test File 25.69 KB 0644
rpl_variables_stm.test File 24.28 KB 0644
rpl_view.test File 4.06 KB 0644
rpl_view_multi.test File 4.55 KB 0644
rpl_zombie_dump_threads.test File 2.4 KB 0644