[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.22.27.222: ~ $
#
# Test of triggers with replication
# Adding statement include due to Bug 12574
# TODO: Remove statement include once 12574 is patched
--source include/have_binlog_format_mixed_or_statement.inc 
--source include/master-slave.inc
--source include/not_gtid_enabled.inc

disable_query_log;
call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT");
--connection slave
call mtr.add_suppression("The master's UUID has changed, although this should not happen unless you have changed it manually.");
--connection master
enable_query_log;

--disable_warnings
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t2;
DROP TABLE IF EXISTS t3;

--enable_warnings

#
# #12482: Triggers has side effects with auto_increment values
#

create table t1 (a int auto_increment, primary key (a), b int, rand_value double not null);
create table t2 (a int auto_increment, primary key (a), b int);
create table t3 (a int auto_increment, primary key (a), name varchar(64) not null, old_a int, old_b int, rand_value double not null);

delimiter |;
create trigger t1 before insert on t1 for each row
begin
 insert into t3 values (NULL, "t1", new.a, new.b, rand());
end|

create trigger t2 after insert on t2 for each row
begin
 insert into t3 values (NULL, "t2", new.a, new.b, rand());
end|
delimiter ;|

insert into t3 values(100,"log",0,0,0);

# Ensure we always have same random numbers
SET @@RAND_SEED1=658490765, @@RAND_SEED2=635893186;

# Emulate that we have rows 2-9 deleted on the slave
--disable_warnings
insert into t1 values(1,1,rand()),(NULL,2,rand());
insert into t2 (b) values(last_insert_id());
insert into t2 values(3,0),(NULL,0);
insert into t2 values(NULL,0),(500,0);
--enable_warnings

select a,b, truncate(rand_value,4) from t1;
select * from t2;
select a,name, old_a, old_b, truncate(rand_value,4) from t3;
--source include/sync_slave_sql_with_master.inc
--disable_query_log
select "--- On slave --" as "";
--enable_query_log
select a,b, truncate(rand_value,4) from t1;
select * from t2;
select a,name, old_a, old_b, truncate(rand_value,4) from t3;
connection master;
drop table t1,t2,t3;

#
# #12480: NOW() is not constant in a trigger
# #12481: Using NOW() in a stored function breaks statement based replication
#

# Start by getting a lock on 'bug12480' to be able to use get_lock() as sleep()
connect (con2,localhost,root,,);
connection con2;
select get_lock("bug12480",2);
connection default;

create table t1 (a datetime,b  datetime, c datetime);
--disable_warnings
drop function if exists bug12480;
--enable_warnings

delimiter |;

create function bug12480() returns datetime
begin
  set @a=get_lock("bug12480",2);
  return now();
end|

create trigger t1_first before insert on t1
for each row begin
  set @a=get_lock("bug12480",2);
  set new.b= now();
  set new.c= bug12480();
end
|

delimiter ;|
# The trigger causes a warning for unsafe statement when
# binlog_format=statement since it uses get_lock.
--disable_warnings
insert into t1 set a = now();
--enable_warnings
select a=b && a=c from t1;
let $time=`select a from t1`;

# Check that definer attribute is replicated properly:
#   - dump definers on the master;
#   - wait for the slave to synchronize with the master;
#   - dump definers on the slave;

SELECT routine_name, definer
FROM information_schema.routines
WHERE routine_name = 'bug12480';

SELECT trigger_name, definer
FROM information_schema.triggers
WHERE trigger_name = 't1_first';

--source include/sync_slave_sql_with_master.inc
--disable_query_log
select "--- On slave --" as "";
--enable_query_log

# XXX: Definers of stored procedures and functions are not replicated. WL#2897
# (Complete definer support in the stored routines) addresses this issue. So,
# the result file is expected to be changed after implementation of this WL
# item.

SELECT routine_name, definer
FROM information_schema.routines
WHERE routine_name = 'bug12480';

SELECT trigger_name, definer
FROM information_schema.triggers
WHERE trigger_name = 't1_first';

select a=b && a=c from t1;
--disable_query_log
eval select a='$time' as 'test' from t1;
--enable_query_log

connection master;
disconnect con2;

truncate table t1;
drop trigger t1_first;

# The trigger causes a warning for unsafe statement when
# binlog_format=statement since it uses get_lock.
--disable_warnings
insert into t1 values ("2003-03-03","2003-03-03","2003-03-03"),(bug12480(),bug12480(),bug12480()),(now(),now(),now());
--enable_warnings
select a=b && a=c from t1;

drop function bug12480;
drop table t1;

#
# #14614: Replication of tables with trigger generates error message if databases is changed
# Note. The error message is emitted by _myfree() using fprintf() to the stderr
# and because of that does not fall into the .result file.
#

create table t1 (i int);
create table t2 (i int);

delimiter |;
create trigger tr1 before insert on t1 for each row
begin
 insert into t2 values (1);
end|
delimiter ;|

create database other;
use other;
insert into test.t1 values (1);

--source include/sync_slave_sql_with_master.inc

connection master;
use test;
drop table t1,t2;
drop database other;


#
# Test specific triggers including SELECT into var with replication
# BUG#13227:
# slave performs an update to the replicatable table, t1, 
# and modifies its local data, t3, by mean of its local trigger that uses
# another local table t2.
# Expected values are commented into queries.
#
# Body of the test executes in a loop since the problem occurred randomly.
# 

let $max_rows=5;
let $rnd=10;

--echo test case for BUG#13227
while ($rnd)
{
  --echo -------------------
    echo $rnd;
  --echo -------------------

### SETUP

--disable_warnings
  connection master;
  eval drop table if exists t1$rnd;
  connection slave;
  eval drop table if exists t2$rnd,t3$rnd;
--enable_warnings

  connection master;
  eval create table t1$rnd (f1 int)  /* 2 replicate */;  
  let $i=$max_rows;
  while ($i)
  {
    eval insert into t1$rnd values (-$i);
    dec $i;
  }

  --source include/sync_slave_sql_with_master.inc
#connection slave;
  eval select * from t1$rnd;
  delimiter |;
  eval create trigger trg1$rnd before update on t1$rnd /* slave local */
  for each row
  begin
    DECLARE r integer;
    SELECT f2 INTO r FROM t2$rnd where f1=NEW.f1;
    INSERT INTO t3$rnd values (r);
  end|
  delimiter ;|
  eval create table t2$rnd (f1 int, f2 int) /* slave local */;        
  eval create table t3$rnd (f3 int) /* slave local */;                
  let $i=$max_rows;
  while ($i) 
  {
    eval insert into t2$rnd values ($i, $i*100);
    dec $i;
  }

### Test

#connection slave;

# trigger works as specified when updates from slave
  eval select * from t2$rnd;
  eval UPDATE t1$rnd SET f1=$max_rows where f1=-$max_rows;
  eval SELECT * from t1$rnd /* must be f1 $max_rows, 1 - $max_rows 2 - $max_rows ... -1 */;
  eval SELECT * from t3$rnd /* must be f3 $max_rows*100 */;

  connection master;
  let $i=$max_rows;
  while ($i)
  {
    eval UPDATE t1$rnd SET f1=$i where f1=-$i;
    dec $i;
  }
  
  --source include/sync_slave_sql_with_master.inc
#connection slave;
  eval SELECT * from t1$rnd /* must be f1 $max_rows ... 1 */;
  eval SELECT * from t3$rnd /* must be f3 $max_rows * 100 ...  100 */;
  
### CLEANUP
#connection slave;
  eval drop trigger trg1$rnd;
  eval drop table t2$rnd,t3$rnd;
  
  connection master;
  eval drop table t1$rnd;
  --source include/sync_slave_sql_with_master.inc
  connection master;
  
  dec $rnd;
}


#
# BUG#16266: Definer is not fully qualified error during replication.
#
# The idea of this test is to emulate replication of a trigger from the old
# master (master w/o "DEFINER in triggers" support) to the new slave and check
# that:
#   1. the trigger on the slave will be replicated w/o errors;
#   2. the trigger on the slave will be non-SUID (will have no DEFINER);
#   3. the trigger can be activated later on the slave w/o errors.
#
# In order to emulate this kind of replication, we make the slave playing the binlog,
# recorded by 5.0.16 master. This binlog contains the following statements:
#   CREATE TABLE t1(c INT);
#   CREATE TABLE t2(s CHAR(200));
#   CREATE TRIGGER trg1 AFTER INSERT ON t1
#     FOR EACH ROW
#       INSERT INTO t2 VALUES(CURRENT_USER());
#   INSERT INTO t1 VALUES(1);
#

# 1. Check that the trigger's replication is succeeded.

# Stop the slave.

connection slave;
STOP SLAVE;

# Replace master's binlog.

connection master;
let $MYSQLD_DATADIR= `select @@datadir`;
FLUSH LOGS;

# Stop master server
--let $rpl_server_number= 1
--source include/rpl_stop_server.inc

# Replace binlog
remove_file $MYSQLD_DATADIR/master-bin.000001;
copy_file $MYSQL_TEST_DIR/std_data/bug16266.000001 $MYSQLD_DATADIR/master-bin.000001;

--let $rpl_server_number= 1
--source include/rpl_start_server.inc

let $binlog_version= query_get_value(SHOW BINLOG EVENTS, Info, 1);


# Make the slave to replay the new binlog.
--echo --> Master binlog: $binlog_version

# Make the slave to replay the new binlog.

connection slave;
RESET SLAVE;
START SLAVE;

SELECT MASTER_POS_WAIT('master-bin.000001', 513) >= 0;

# Check that the replication succeeded.

SHOW TABLES LIKE 't_';
SHOW TRIGGERS;
SELECT * FROM t1;
SELECT * FROM t2;

# 2. Check that the trigger is non-SUID on the slave;
# 3. Check that the trigger can be activated on the slave.
#
# We disable warnings here since it affects the result file in
# different ways depending on the mode being used.

disable_warnings;
INSERT INTO t1 VALUES(2);
enable_warnings;

SELECT * FROM t1;
SELECT * FROM t2;

# That's all, cleanup.

DROP TRIGGER trg1;
DROP TABLE t1;
DROP TABLE t2;

STOP SLAVE;
RESET SLAVE;

# The master should be clean.

connection master;
SHOW TABLES LIKE 't_';
SHOW TRIGGERS;

RESET MASTER;

# Restart slave.

connection slave;
START SLAVE;


#
# BUG#20438: CREATE statements for views, stored routines and triggers can be
# not replicable.
#

--source include/rpl_reset.inc
--echo
--echo ---> Test for BUG#20438

# Prepare environment.

--echo
--echo ---> Preparing environment...
--echo ---> connection: master
--connection master

--disable_warnings
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t2;
--enable_warnings

--echo
--echo ---> Synchronizing slave with master...

--source include/sync_slave_sql_with_master.inc

--echo
--echo ---> connection: master
--connection master

# Test.

--echo
--echo ---> Creating objects...

CREATE TABLE t1(c INT);
CREATE TABLE t2(c INT);

/*!50003 CREATE TRIGGER t1_bi BEFORE INSERT ON t1
  FOR EACH ROW
    INSERT INTO t2 VALUES(NEW.c * 10) */;

--echo
--echo ---> Inserting value...

INSERT INTO t1 VALUES(1);

--echo
--echo ---> Checking on master...

SELECT * FROM t1;
SELECT * FROM t2;

--echo
--echo ---> Synchronizing slave with master...

--source include/sync_slave_sql_with_master.inc

--echo ---> connection: master

--echo
--echo ---> Checking on slave...

SELECT * FROM t1;
SELECT * FROM t2;

# Cleanup.

--echo
--echo ---> connection: master
--connection master

--echo
--echo ---> Cleaning up...

DROP TABLE t1;
DROP TABLE t2;

--source include/sync_slave_sql_with_master.inc
--connection master

#
# BUG#23703: DROP TRIGGER needs an IF EXISTS
#

connection master;

--disable_warnings
drop table if exists t1;
--enable_warnings

create table t1(a int, b varchar(50));

-- error ER_TRG_DOES_NOT_EXIST
drop trigger not_a_trigger;

drop trigger if exists not_a_trigger;

create trigger t1_bi before insert on t1
for each row set NEW.b := "In trigger t1_bi";

insert into t1 values (1, "a");
drop trigger if exists t1_bi;
insert into t1 values (2, "b");
drop trigger if exists t1_bi;
insert into t1 values (3, "c");

select * from t1;
--source include/sync_slave_sql_with_master.inc
select * from t1;

connection master;

drop table t1;
--source include/sync_slave_sql_with_master.inc

#
# Bug#40116: Uncommited changes are replicated and stay on slave after
# rollback on master
#

connection master;
--source include/rpl_reset.inc

source include/have_innodb.inc;
connection slave;
source include/have_innodb.inc;

connection master;
create table t1 ( f int ) engine = innodb;
create table log ( r int ) engine = myisam; 
create trigger tr
  after insert on t1
  for each row insert into log values ( new.f );

set autocommit = 0;
--disable_warnings
insert into t1 values ( 1 );
--enable_warnings
rollback;
--source include/sync_slave_sql_with_master.inc

let $diff_tables= master:t1, slave:t1;
--source include/diff_tables.inc

let $diff_tables= master:log, slave:log;
--source include/diff_tables.inc

connection master;
drop table t1, log;
--source include/sync_slave_sql_with_master.inc

#
# End of tests
#
--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