[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.145.62.46: ~ $
# row-based and statement have expected binlog difference in result files

# Test of replication of stored procedures (WL#2146 for MySQL 5.0)
# Modified by WL#2971.

source include/have_binlog_format_mixed.inc;
source include/master-slave.inc;
source include/not_gtid_enabled.inc;


# we need a db != test, where we don't have automatic grants
--disable_warnings
drop database if exists mysqltest1;
--enable_warnings
create database mysqltest1;
use mysqltest1;
create table t1 (a varchar(100));
--source include/sync_slave_sql_with_master.inc
use mysqltest1;

# ********************** PART 1 : STORED PROCEDURES ***************

# Does the same proc as on master get inserted into mysql.proc ?
# (same definer, same properties...)

connection master;

delimiter |;

# Stored procedures don't have the limitations that functions have
# regarding binlogging: it's ok to create a procedure as not
# deterministic and updating data, while it's not ok to create such a
# function. We test this.

create procedure foo()
begin
  declare b int;
  set b = 8;
  insert into t1 values (b);
  insert into t1 values (unix_timestamp());
end|
delimiter ;|

# we replace columns having times
# (even with fixed timestamp displayed time may changed based on TZ)
--replace_result localhost.localdomain localhost 127.0.0.1 localhost
--replace_column 13 # 14 #
select * from mysql.proc where name='foo' and db='mysqltest1';
--source include/sync_slave_sql_with_master.inc
# You will notice in the result that the definer does not match what
# it is on master, it is a known bug on which Alik is working
--replace_result localhost.localdomain localhost 127.0.0.1 localhost
--replace_column 13 # 14 #
select * from mysql.proc where name='foo' and db='mysqltest1';

connection master;
# see if timestamp used in SP on slave is same as on master
set timestamp=1000000000;
call foo();
select * from t1;
--source include/sync_slave_sql_with_master.inc
select * from t1;

# Now a SP which is not updating tables

connection master;
delete from t1;
create procedure foo2()
  select * from mysqltest1.t1;
call foo2();

# check that this is allowed (it's not for functions):
alter procedure foo2 contains sql;

# SP with definer's right

drop table t1;
create table t1 (a int);
create table t2 like t1;

create procedure foo3()
  deterministic
  insert into t1 values (15);

# let's create a non-privileged user
grant CREATE ROUTINE, EXECUTE on mysqltest1.* to "zedjzlcsjhd"@127.0.0.1;
grant SELECT on mysqltest1.t1 to "zedjzlcsjhd"@127.0.0.1;
grant SELECT, INSERT on mysqltest1.t2 to "zedjzlcsjhd"@127.0.0.1;

# ToDo: BUG#14931: There is a race between the last grant binlogging, and
# the binlogging in the new connection made below, causing sporadic test
# failures due to switched statement order in binlog. To fix this we do
# SELECT 1 in the first connection before starting the second, ensuring
# that binlogging is done in the expected order.
# Please remove this SELECT 1 when BUG#14931 is fixed.
SELECT 1;

connect (con1,127.0.0.1,zedjzlcsjhd,,mysqltest1,$MASTER_MYPORT,);
connection con1;

# this routine will fail in the second INSERT because of privileges
delimiter |;
create procedure foo4()
  deterministic
  begin
  insert into t2 values(3);
  insert into t1 values (5);
  end|

delimiter ;|

# I add ,0 so that it does not print the error in the test output,
# because this error is hostname-dependent
--error 1142,0
call foo4(); # invoker has no INSERT grant on table t1 => failure

connection master;
call foo3(); # success (definer == root)
show warnings;

--error 1142,0
call foo4(); # definer's rights => failure

# we test replication of ALTER PROCEDURE
alter procedure foo4 sql security invoker;
call foo4(); # invoker's rights => success
show warnings;

# Note that half-failed procedure calls are ok with binlogging;
# if we compare t2 on master and slave we see they are identical:

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

# Let's check another failing-in-the-middle procedure
connection master;
delete from t2;
alter table t2 add unique (a);

drop procedure foo4;
delimiter |;
create procedure foo4()
  deterministic
  begin
  insert into t2 values(20),(20);
  end|

delimiter ;|

--error ER_DUP_ENTRY
call foo4();
show warnings;

select * from t2;
--source include/sync_slave_sql_with_master.inc
# check that this failed-in-the-middle replicated right:
select * from t2;

# Test of DROP PROCEDURE

--replace_result localhost.localdomain localhost 127.0.0.1 localhost
--replace_column 13 # 14 #
select * from mysql.proc where name="foo4" and db='mysqltest1';
connection master;
drop procedure foo4;
select * from mysql.proc where name="foo4" and db='mysqltest1';
--source include/sync_slave_sql_with_master.inc
select * from mysql.proc where name="foo4" and db='mysqltest1';

# ********************** PART 2 : FUNCTIONS ***************

connection master;
drop procedure foo;
drop procedure foo2;
drop procedure foo3;

delimiter |;
# check that needs "deterministic"
--error 1418
create function fn1(x int)
       returns int
begin
       insert into t1 values (x);
       return x+2;
end|
create function fn1(x int)
       returns int
       deterministic
begin
       insert into t1 values (x);
       return x+2;
end|

delimiter ;|
delete t1,t2 from t1,t2;
select fn1(20);
insert into t2 values(fn1(21));
select * from t1;
select * from t2;
--source include/sync_slave_sql_with_master.inc
select * from t1;
select * from t2;

connection master;
delimiter |;

drop function fn1;

create function fn1()
       returns int
       no sql
begin
       return unix_timestamp();
end|

delimiter ;|
# check that needs "deterministic"
--error 1418
alter function fn1 contains sql;

delete from t1;
set timestamp=1000000000;
insert into t1 values(fn1()); 

connection con1;

delimiter |;
--error 1419 # only full-global-privs user can create a function
create function fn2()
       returns int
       no sql
begin
       return unix_timestamp();
end|
delimiter ;|
connection master;
set @old_log_bin_trust_function_creators= @@global.log_bin_trust_function_creators;
set global log_bin_trust_function_creators=0;
set global log_bin_trust_function_creators=1;
# slave needs it too otherwise will not execute what master allowed:
connection slave;
set @old_log_bin_trust_function_creators= @@global.log_bin_trust_function_creators;
set global log_bin_trust_function_creators=1;

connection con1;

delimiter |;
create function fn2()
       returns int
       no sql
begin
       return unix_timestamp();
end|
delimiter ;|

connection master;

# Now a function which is supposed to not update tables
# as it's "reads sql data", so should not give error even if
# non-deterministic.

delimiter |;
create function fn3()
       returns int
       not deterministic
       reads sql data
begin
  return 0;
end|
delimiter ;|

select fn3();
--replace_result localhost.localdomain localhost 127.0.0.1 localhost
--replace_column 13 # 14 #
select * from mysql.proc where db='mysqltest1';
select * from t1;

--source include/sync_slave_sql_with_master.inc
use mysqltest1;
select * from t1;
--replace_result localhost.localdomain localhost 127.0.0.1 localhost
--replace_column 13 # 14 #
select * from mysql.proc where db='mysqltest1';

# Let's check a failing-in-the-middle function
connection master;
delete from t2;
alter table t2 add unique (a);

drop function fn1;

delimiter |;
create function fn1(x int)
       returns int
begin
  insert into t2 values(x),(x);
  return 10;
end|

delimiter ;|

do fn1(100);

--error ER_DUP_ENTRY
select fn1(20);

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

# check that this failed-in-the-middle replicated right:
select * from t2;

# ********************** PART 3 : TRIGGERS ***************

connection con1;
# now fails due to missing trigger grant (err 1142 i/o 1227) due to new
# check in sql_trigger.cc (v1.44) by anozdrin on 2006/02/01  --azundris
--error ER_TABLEACCESS_DENIED_ERROR
create trigger trg before insert on t1 for each row set new.a= 10;

connection master;
delete from t1;
# TODO: when triggers can contain an update, test that this update
# does not go into binlog.
# I'm not setting user vars in the trigger, because replication of user vars
# would take care of propagating the user var's value to slave, so even if
# the trigger was not executed on slave it would not be discovered.
create trigger trg before insert on t1 for each row set new.a= 10;
insert into t1 values (1);
select * from t1;
--source include/sync_slave_sql_with_master.inc
select * from t1;

connection master;
delete from t1;
drop trigger trg;
insert into t1 values (1);
select * from t1;
--source include/sync_slave_sql_with_master.inc
select * from t1;


# ********************** PART 4 : RELATED FIXED BUGS ***************


#
# Test for bug #13969 "Routines which are replicated from master can't be
# executed on slave".
# 
connection master;
create procedure foo()
  not deterministic
  reads sql data
  select * from t1;
--source include/sync_slave_sql_with_master.inc
# This should not fail
call foo();
connection master;
drop procedure foo;
--source include/sync_slave_sql_with_master.inc


# Clean up
connection master;
drop function fn1;
drop database mysqltest1;
drop user "zedjzlcsjhd"@127.0.0.1;
use test;
--source include/sync_slave_sql_with_master.inc
use test;

#
# Bug#14077 "Failure to replicate a stored function with a cursor":
# verify that stored routines with cursors work on slave. 
#
connection master;
--disable_warnings
drop function if exists f1;
--enable_warnings
delimiter |;
create function f1() returns int reads sql data
begin
  declare var integer;
  declare c cursor for select a from v1;
  open c;
  fetch c into var;
  close c;
  return var;
end|
delimiter ;|
create view v1 as select 1 as a;
create table t1 (a int);
insert into t1 (a) values (f1());
select * from t1;
drop view v1;
drop function f1;
--source include/sync_slave_sql_with_master.inc
connection slave;
select * from t1;

#
# Bug#16621 "INSERTs in Stored Procedures causes data corruption in the Binary
# Log for 5.0.18"
#

# Prepare environment.

connection master;

--disable_warnings
DROP PROCEDURE IF EXISTS p1;
DROP TABLE IF EXISTS t1;
--enable_warnings

# Test case.

CREATE TABLE t1(col VARCHAR(10));

CREATE PROCEDURE p1(arg VARCHAR(10))
  INSERT INTO t1 VALUES(arg);

CALL p1('test');

SELECT * FROM t1;

--source include/sync_slave_sql_with_master.inc
SELECT * FROM t1;

# Cleanup
connection master;
DROP PROCEDURE p1;


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

--echo
--echo ---> Test for BUG#20438

# Prepare environment.

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

--disable_warnings
DROP PROCEDURE IF EXISTS p1;
DROP FUNCTION IF EXISTS f1;
--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 procedure...

/*!50003 CREATE PROCEDURE p1() SET @a = 1 */;

/*!50003 CREATE FUNCTION f1() RETURNS INT RETURN 0 */;

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

SHOW CREATE PROCEDURE p1;
SHOW CREATE FUNCTION f1;

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

--source include/sync_slave_sql_with_master.inc

--echo ---> connection: master

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

SHOW CREATE PROCEDURE p1;
SHOW CREATE FUNCTION f1;

# Cleanup.

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

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

DROP PROCEDURE p1;
DROP FUNCTION f1;

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


# cleanup
connection master;
drop table t1;
--source include/sync_slave_sql_with_master.inc

#
# Bug22043: MySQL don't add "USE <DATABASE>" before "DROP PROCEDURE IF EXISTS"
#

connection master;
--disable_warnings
drop database if exists mysqltest;
drop database if exists mysqltest2;
--enable_warnings
create database mysqltest;
create database mysqltest2;
use mysqltest2;
create table t ( t integer );
create procedure mysqltest.test() begin end;
insert into t values ( 1 );
--error ER_BAD_DB_ERROR
create procedure `\\`.test() begin end;

#
# BUG#19725: Calls to stored function in other database are not
# replicated correctly in some cases
#

connection master;
delimiter |;
create function f1 () returns int
begin
  insert into t values (1);
  return 0;
end|
delimiter ;|
--source include/sync_slave_sql_with_master.inc
# Let us test if we don't forget to binlog the function's database
connection master;
use mysqltest;
set @a:= mysqltest2.f1();
--source include/sync_slave_sql_with_master.inc
connection master;

# Final inspection which verifies how all statements of this test file
# were written to the binary log.
--source include/show_binlog_events.inc

# Restore log_bin_trust_function_creators to its original value.
# This is a cleanup for all parts above where we tested stored
# functions and triggers.
connection slave;
set @@global.log_bin_trust_function_creators= @old_log_bin_trust_function_creators;
connection master;
set @@global.log_bin_trust_function_creators= @old_log_bin_trust_function_creators;

# Clean up
drop database mysqltest;
drop database mysqltest2;
--source include/sync_slave_sql_with_master.inc

#
# Bug#36570: Parse error of CREATE PROCEDURE stmt with comments on slave
#
connection master;
use test;
delimiter |;

/*!50001 create procedure `mysqltestbug36570_p1`() */
begin
	select 1;
end|

use mysql|
create procedure test.` mysqltestbug36570_p2`(/*!50001 a int*/)`label`:
begin
	select a;
end|

/*!50001 create function test.mysqltestbug36570_f1() */
	returns int
	/*!50001 deterministic */
begin
	return 3;
end|
use test|

delimiter ;|

--replace_column 5 t 6 t
show procedure status like '%mysqltestbug36570%';
show create procedure ` mysqltestbug36570_p2`;

--source include/sync_slave_sql_with_master.inc
connection slave;

--replace_column 5 t 6 t
show procedure status like '%mysqltestbug36570%';
show create procedure ` mysqltestbug36570_p2`;
call ` mysqltestbug36570_p2`(42);

--replace_column 5 t 6 t
show function status like '%mysqltestbug36570%';

connection master;
flush logs;
let $MYSQLD_DATADIR= `select @@datadir`;
--replace_regex s/$MYSQL_TEST_DIR/MYSQL_TEST_DIR/ s/TIMESTAMP=[0-9]*/TIMESTAMP=t/ s/SET @@SESSION.GTID_NEXT= .*;/SET @@SESSION.GTID_NEXT= 'GTID';/ s/GROUPS: .*:(.*,.*) /GROUPS: GTID:(X,X)/
--exec $MYSQL_BINLOG --short-form $MYSQLD_DATADIR/master-bin.000001
use test;
drop procedure mysqltestbug36570_p1;
drop procedure ` mysqltestbug36570_p2`;
drop function mysqltestbug36570_f1;
--echo End of 5.0 tests
--echo # End of 5.1 tests
--echo #
--echo # Test Bug#30977 Concurrent statement using stored
--echo # function and DROP FUNCTION breaks SBR.
--echo #
--echo # Demonstrate that stored function DDL can not go through,
--echo # or, worse yet, make its way into the binary log, while
--echo # the stored function is in use.
--echo # For that, try to insert a result of a stored function
--echo # into a table. Block the insert in the beginning, waiting
--echo # on a table lock. While insert is blocked, attempt to
--echo # drop the routine. Verify that this attempt 
--echo # blocks and waits for INSERT to complete. Commit and 
--echo # reap the chain of events. Master and slave must contain
--echo # identical data. Statements in the binrary log must be
--echo # consistent with data in the table.
--echo #
--echo # --> connection default
connection default;
--disable_warnings
drop table if exists t1, t2;
drop function if exists t1;
--enable_warnings
create table t1 (a int);
create table t2 (a int) as select 1 as a;
create function f1() returns int deterministic return (select max(a) from t2);
lock table t2 write;
--echo # --> connection master
connection master;
--echo # Sending 'insert into t1 (a) values (f1())'...
--send insert into t1 (a) values (f1())
connection master1;
--echo # Waitng for 'insert into t1 ...' to get blocked on table lock...
let $wait_condition=select count(*)=1 from information_schema.processlist
where state='Waiting for table metadata lock' and
      info='insert into t1 (a) values (f1())';
--source include/wait_condition.inc
--echo # Sending 'drop function f1'. It will wait till insert finishes.
--send drop function f1;
--echo # --> connection default
connection default;
--echo # Check that 'drop function f1' gets blocked.
let $wait_condition=select count(*)=1 from information_schema.processlist
where state='Waiting for stored function metadata lock' and info='drop function f1';
--source include/wait_condition.inc
--echo # Now let's let 'insert' go through...
unlock tables;
--echo # --> connection master
connection master;
--echo # Reaping 'insert into t1 (a) values (f1())'...
--reap
--echo # --> connection master1
connection master1;
--echo # Reaping 'drop function f1'
--reap
--echo # --> connection master
connection master;
select * from t1;
--source include/sync_slave_sql_with_master.inc
connection slave;
select * from  t1;
# Cleanup
connection master;
drop table t1, t2;
--error ER_SP_DOES_NOT_EXIST
drop function f1;


--echo #
--echo # Bug #11918 Can't use a declared variable in LIMIT clause
--echo #
--source include/rpl_reset.inc

create table t1 (c1 int);
insert into t1 (c1) values
(1), (2), (3), (4), (5), (6), (7), (8), (9), (10);

call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT");

create procedure p1(p1 integer)
  delete from t1 limit p1; 

set @save_binlog_format=@@session.binlog_format;
set @@session.binlog_format=STATEMENT;

--disable_warnings
call p1(NULL);
call p1(0);
call p1(1);
call p1(2);
call p1(3);
--enable_warnings

select * from t1;
--source include/sync_slave_sql_with_master.inc
connection slave;
select * from t1;
connection master;
--disable_warnings
call p1(-1);
--enable_warnings
select * from t1;
--source include/sync_slave_sql_with_master.inc
connection slave;
select * from t1;
connection master;

--echo # Cleanup
set @@session.binlog_format=@save_binlog_format;
drop table t1;
drop procedure p1;

--echo # End of 5.5 tests.


# Cleanup
--source include/sync_slave_sql_with_master.inc
--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