[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.227.105.164: ~ $
stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;

-------- switch to master -------
SET AUTOCOMMIT = 1;
DROP DATABASE IF EXISTS mysqltest1;
DROP DATABASE IF EXISTS mysqltest2;
DROP DATABASE IF EXISTS mysqltest3;
CREATE DATABASE mysqltest1;
CREATE DATABASE mysqltest2;
CREATE TABLE mysqltest1.t1 (f1 BIGINT) ENGINE=InnoDB;
INSERT INTO mysqltest1.t1 SET f1= 0;
CREATE TABLE mysqltest1.t2 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t3 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t4 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t5 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t6 (f1 BIGINT) ENGINE=InnoDB;
CREATE INDEX my_idx6 ON mysqltest1.t6(f1);
CREATE TABLE mysqltest1.t7 (f1 BIGINT) ENGINE=InnoDB;
INSERT INTO mysqltest1.t7 SET f1= 0;
CREATE TABLE mysqltest1.t8 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t9 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t10 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t11 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t12 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t13 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t14 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t15 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t16 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t17 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t18 (f1 BIGINT) ENGINE=InnoDB;
CREATE TABLE mysqltest1.t19 (f1 BIGINT) ENGINE=InnoDB;
CREATE TEMPORARY TABLE mysqltest1.t23 (f1 BIGINT) ENGINE=MEMORY;
SET AUTOCOMMIT = 0;
use mysqltest1;

-------- switch to slave --------
SET AUTOCOMMIT = 1;
use mysqltest1;

-------- switch to master -------

######## SELECT 1 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 0 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
0

-------- switch to master -------
SELECT 1;
1
1
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
0

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
0

TEST-INFO: MASTER: The INSERT is not committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
0

TEST-INFO: SLAVE:  The INSERT is not committed (Succeeded)

-------- switch to master -------

######## SELECT COUNT(*) FROM t1 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 0 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
0

-------- switch to master -------
SELECT COUNT(*) FROM t1;
COUNT(*)
2
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
0

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
0

TEST-INFO: MASTER: The INSERT is not committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
0

TEST-INFO: SLAVE:  The INSERT is not committed (Succeeded)

-------- switch to master -------

######## COMMIT ########

-------- switch to master -------
INSERT INTO t1 SET f1= 0 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
0

-------- switch to master -------
COMMIT;
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
1

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
1

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------

######## ROLLBACK ########

-------- switch to master -------
INSERT INTO t1 SET f1= 1 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
2

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
1

TEST-INFO: MASTER: The INSERT is not committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
1

TEST-INFO: SLAVE:  The INSERT is not committed (Succeeded)

-------- switch to master -------

######## SET AUTOCOMMIT=1 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 1 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
2

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
1

-------- switch to master -------
SET AUTOCOMMIT=1;
SELECT MAX(f1) FROM t1;
MAX(f1)
2

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
2

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
2

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
2

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SET AUTOCOMMIT=0;

######## START TRANSACTION ########

-------- switch to master -------
INSERT INTO t1 SET f1= 2 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
3

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
2

-------- switch to master -------
START TRANSACTION;
SELECT MAX(f1) FROM t1;
MAX(f1)
3

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
3

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
3

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
3

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------

######## BEGIN ########

-------- switch to master -------
INSERT INTO t1 SET f1= 3 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
4

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
3

-------- switch to master -------
BEGIN;
SELECT MAX(f1) FROM t1;
MAX(f1)
4

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
4

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
4

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
4

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------

######## DROP TABLE mysqltest1.t2 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 4 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
5

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
4

-------- switch to master -------
DROP TABLE mysqltest1.t2;
SELECT MAX(f1) FROM t1;
MAX(f1)
5

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
5

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
5

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
5

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW TABLES LIKE 't2';
Tables_in_mysqltest1 (t2)

-------- switch to slave --------
SHOW TABLES LIKE 't2';
Tables_in_mysqltest1 (t2)

-------- switch to master -------

######## DROP TEMPORARY TABLE mysqltest1.t23 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 5 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
6

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
5

-------- switch to master -------
DROP TEMPORARY TABLE mysqltest1.t23;
SELECT MAX(f1) FROM t1;
MAX(f1)
6

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
5

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
5

TEST-INFO: MASTER: The INSERT is not committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
6

TEST-INFO: SLAVE:  The INSERT is committed (Failed)

-------- switch to master -------
SHOW TABLES LIKE 't23';
Tables_in_mysqltest1 (t23)

-------- switch to slave --------
SHOW TABLES LIKE 't23';
Tables_in_mysqltest1 (t23)

-------- switch to master -------

######## RENAME TABLE mysqltest1.t3 to mysqltest1.t20 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 5 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
6

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
6

-------- switch to master -------
RENAME TABLE mysqltest1.t3 to mysqltest1.t20;
SELECT MAX(f1) FROM t1;
MAX(f1)
6

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
6

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
6

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
6

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW TABLES LIKE 't20';
Tables_in_mysqltest1 (t20)
t20

-------- switch to slave --------
SHOW TABLES LIKE 't20';
Tables_in_mysqltest1 (t20)
t20

-------- switch to master -------

######## ALTER TABLE mysqltest1.t4 ADD column f2 BIGINT ########

-------- switch to master -------
INSERT INTO t1 SET f1= 6 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
7

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
6

-------- switch to master -------
ALTER TABLE mysqltest1.t4 ADD column f2 BIGINT;
SELECT MAX(f1) FROM t1;
MAX(f1)
7

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
7

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
7

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
7

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
describe mysqltest1.t4;
Field	Type	Null	Key	Default	Extra
f1	bigint(20)	YES		NULL	
f2	bigint(20)	YES		NULL	

-------- switch to slave --------
describe mysqltest1.t4;
Field	Type	Null	Key	Default	Extra
f1	bigint(20)	YES		NULL	
f2	bigint(20)	YES		NULL	

-------- switch to master -------

######## CREATE TABLE mysqltest1.t21 (f1 BIGINT) ENGINE= InnoDB ########

-------- switch to master -------
INSERT INTO t1 SET f1= 7 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
8

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
7

-------- switch to master -------
CREATE TABLE mysqltest1.t21 (f1 BIGINT) ENGINE= InnoDB;
SELECT MAX(f1) FROM t1;
MAX(f1)
8

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
8

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
8

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
8

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------

######## CREATE TEMPORARY TABLE mysqltest1.t22 (f1 BIGINT) ENGINE=MEMORY ########

-------- switch to master -------
INSERT INTO t1 SET f1= 8 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
9

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
8

-------- switch to master -------
CREATE TEMPORARY TABLE mysqltest1.t22 (f1 BIGINT) ENGINE=MEMORY;
SELECT MAX(f1) FROM t1;
MAX(f1)
9

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
8

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
8

TEST-INFO: MASTER: The INSERT is not committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
9

TEST-INFO: SLAVE:  The INSERT is committed (Failed)

-------- switch to master -------

######## TRUNCATE TABLE mysqltest1.t7 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 8 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
9

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
9

-------- switch to master -------
TRUNCATE TABLE mysqltest1.t7;
SELECT MAX(f1) FROM t1;
MAX(f1)
9

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
9

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
9

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
9

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SELECT * FROM mysqltest1.t7;
f1

-------- switch to slave --------
SELECT * FROM mysqltest1.t7;
f1

-------- switch to master -------

######## LOCK TABLES mysqltest1.t1 WRITE, mysqltest1.t8 READ ########

-------- switch to master -------
INSERT INTO t1 SET f1= 9 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
10

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
9

-------- switch to master -------
LOCK TABLES mysqltest1.t1 WRITE, mysqltest1.t8 READ;
SELECT MAX(f1) FROM t1;
MAX(f1)
10

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
10

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
10

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
10

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
UNLOCK TABLES;

######## UNLOCK TABLES ########

-------- switch to master -------
INSERT INTO t1 SET f1= 10 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
11

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
10

-------- switch to master -------
UNLOCK TABLES;
SELECT MAX(f1) FROM t1;
MAX(f1)
11

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
10

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
10

TEST-INFO: MASTER: The INSERT is not committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
10

TEST-INFO: SLAVE:  The INSERT is not committed (Succeeded)

-------- switch to master -------
LOCK TABLES mysqltest1.t1 READ;

######## UNLOCK TABLES ########

-------- switch to master -------
INSERT INTO t1 SET f1= 10 + 1;
ERROR HY000: Table 't1' was locked with a READ lock and can't be updated
SELECT MAX(f1) FROM t1;
MAX(f1)
10

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
10

-------- switch to master -------
UNLOCK TABLES;
SELECT MAX(f1) FROM t1;
MAX(f1)
10

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
10

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
10

TEST-INFO: MASTER: The INSERT is not committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
10

TEST-INFO: SLAVE:  The INSERT is not committed (Succeeded)

-------- switch to master -------
LOCK TABLES mysqltest1.t1 WRITE, mysqltest1.t8 READ;

######## UNLOCK TABLES ########

-------- switch to master -------
INSERT INTO t1 SET f1= 10 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
11

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
10

-------- switch to master -------
UNLOCK TABLES;
SELECT MAX(f1) FROM t1;
MAX(f1)
11

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
11

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
11

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
11

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------

######## DROP INDEX my_idx6 ON mysqltest1.t6 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 11 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
12

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
11

-------- switch to master -------
DROP INDEX my_idx6 ON mysqltest1.t6;
SELECT MAX(f1) FROM t1;
MAX(f1)
12

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
12

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
12

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
12

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW INDEX FROM mysqltest1.t6;
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment

-------- switch to slave --------
SHOW INDEX FROM mysqltest1.t6;
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment

-------- switch to master -------

######## CREATE INDEX my_idx5 ON mysqltest1.t5(f1) ########

-------- switch to master -------
INSERT INTO t1 SET f1= 12 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
13

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
12

-------- switch to master -------
CREATE INDEX my_idx5 ON mysqltest1.t5(f1);
SELECT MAX(f1) FROM t1;
MAX(f1)
13

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
13

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
13

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
13

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW INDEX FROM mysqltest1.t5;
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment
t5	1	my_idx5	1	f1	A	0	NULL	NULL	YES	BTREE	

-------- switch to slave --------
SHOW INDEX FROM mysqltest1.t5;
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment
t5	1	my_idx5	1	f1	A	NULL	NULL	NULL	YES	BTREE	

-------- switch to master -------

######## DROP DATABASE mysqltest2 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 13 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
14

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
13

-------- switch to master -------
DROP DATABASE mysqltest2;
SELECT MAX(f1) FROM t1;
MAX(f1)
14

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
14

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
14

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
14

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW DATABASES LIKE "mysqltest2";
Database (mysqltest2)

-------- switch to slave --------
SHOW DATABASES LIKE "mysqltest2";
Database (mysqltest2)

-------- switch to master -------

######## CREATE DATABASE mysqltest3 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 14 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
15

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
14

-------- switch to master -------
CREATE DATABASE mysqltest3;
SELECT MAX(f1) FROM t1;
MAX(f1)
15

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
15

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
15

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
15

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW DATABASES LIKE "mysqltest3";
Database (mysqltest3)
mysqltest3

-------- switch to slave --------
SHOW DATABASES LIKE "mysqltest3";
Database (mysqltest3)
mysqltest3

-------- switch to master -------

######## CREATE PROCEDURE p1() READS SQL DATA SELECT "this is p1" ########

-------- switch to master -------
INSERT INTO t1 SET f1= 15 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
16

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
15

-------- switch to master -------
CREATE PROCEDURE p1() READS SQL DATA SELECT "this is p1";
SELECT MAX(f1) FROM t1;
MAX(f1)
16

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
16

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
16

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
16

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW PROCEDURE STATUS LIKE 'p1';
Db	mysqltest1
Name	p1
Type	PROCEDURE
Definer	root@localhost
Modified	#
Created	#
Security_type	DEFINER
Comment	
character_set_client	latin1
collation_connection	latin1_swedish_ci
Database Collation	latin1_swedish_ci

-------- switch to slave --------
SHOW PROCEDURE STATUS LIKE 'p1';
Db	mysqltest1
Name	p1
Type	PROCEDURE
Definer	root@localhost
Modified	#
Created	#
Security_type	DEFINER
Comment	
character_set_client	latin1
collation_connection	latin1_swedish_ci
Database Collation	latin1_swedish_ci

-------- switch to master -------

######## ALTER PROCEDURE p1 COMMENT "I have been altered" ########

-------- switch to master -------
INSERT INTO t1 SET f1= 16 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
17

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
16

-------- switch to master -------
ALTER PROCEDURE p1 COMMENT "I have been altered";
SELECT MAX(f1) FROM t1;
MAX(f1)
17

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
17

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
17

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
17

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW PROCEDURE STATUS LIKE 'p1';
Db	mysqltest1
Name	p1
Type	PROCEDURE
Definer	root@localhost
Modified	#
Created	#
Security_type	DEFINER
Comment	I have been altered
character_set_client	latin1
collation_connection	latin1_swedish_ci
Database Collation	latin1_swedish_ci

-------- switch to slave --------
SHOW PROCEDURE STATUS LIKE 'p1';
Db	mysqltest1
Name	p1
Type	PROCEDURE
Definer	root@localhost
Modified	#
Created	#
Security_type	DEFINER
Comment	I have been altered
character_set_client	latin1
collation_connection	latin1_swedish_ci
Database Collation	latin1_swedish_ci

-------- switch to master -------

######## DROP PROCEDURE p1 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 17 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
18

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
17

-------- switch to master -------
DROP PROCEDURE p1;
SELECT MAX(f1) FROM t1;
MAX(f1)
18

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
18

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
18

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
18

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW PROCEDURE STATUS LIKE 'p1';

-------- switch to slave --------
SHOW PROCEDURE STATUS LIKE 'p1';

-------- switch to master -------

######## CREATE OR REPLACE VIEW v1 as select * from t1 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 18 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
19

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
18

-------- switch to master -------
CREATE OR REPLACE VIEW v1 as select * from t1;
SELECT MAX(f1) FROM t1;
MAX(f1)
19

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
19

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
19

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
19

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW CREATE VIEW v1;
View	Create View	character_set_client	collation_connection
v1	CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select `t1`.`f1` AS `f1` from `t1`	latin1	latin1_swedish_ci

-------- switch to slave --------
SHOW CREATE VIEW v1;
View	Create View	character_set_client	collation_connection
v1	CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select `t1`.`f1` AS `f1` from `t1`	latin1	latin1_swedish_ci

-------- switch to master -------

######## ALTER VIEW v1 AS select f1 from t1 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 19 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
20

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
19

-------- switch to master -------
ALTER VIEW v1 AS select f1 from t1;
SELECT MAX(f1) FROM t1;
MAX(f1)
20

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
20

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
20

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
20

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW CREATE VIEW v1;
View	Create View	character_set_client	collation_connection
v1	CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select `t1`.`f1` AS `f1` from `t1`	latin1	latin1_swedish_ci

-------- switch to slave --------
SHOW CREATE VIEW v1;
View	Create View	character_set_client	collation_connection
v1	CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select `t1`.`f1` AS `f1` from `t1`	latin1	latin1_swedish_ci

-------- switch to master -------

######## DROP VIEW IF EXISTS v1 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 20 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
21

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
20

-------- switch to master -------
DROP VIEW IF EXISTS v1;
SELECT MAX(f1) FROM t1;
MAX(f1)
21

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
21

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
21

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
21

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW CREATE VIEW v1;
ERROR 42S02: Table 'mysqltest1.v1' doesn't exist

-------- switch to slave --------
SHOW CREATE VIEW v1;
ERROR 42S02: Table 'mysqltest1.v1' doesn't exist

-------- switch to master -------

######## CREATE TRIGGER trg1 BEFORE INSERT ON t1 FOR EACH ROW SET @a:=1 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 21 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
22

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
21

-------- switch to master -------
CREATE TRIGGER trg1 BEFORE INSERT ON t1 FOR EACH ROW SET @a:=1;
SELECT MAX(f1) FROM t1;
MAX(f1)
22

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
22

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
22

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
22

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW TRIGGERS;
Trigger	Event	Table	Statement	Timing	Created	sql_mode	Definer	character_set_client	collation_connection	Database Collation
trg1	INSERT	t1	SET @a:=1	BEFORE	NULL		root@localhost	latin1	latin1_swedish_ci	latin1_swedish_ci

-------- switch to slave --------
SHOW TRIGGERS;
Trigger	Event	Table	Statement	Timing	Created	sql_mode	Definer	character_set_client	collation_connection	Database Collation
trg1	INSERT	t1	SET @a:=1	BEFORE	NULL		root@localhost	latin1	latin1_swedish_ci	latin1_swedish_ci

-------- switch to master -------

######## DROP TRIGGER trg1 ########

-------- switch to master -------
INSERT INTO t1 SET f1= 22 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
23

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
22

-------- switch to master -------
DROP TRIGGER trg1;
SELECT MAX(f1) FROM t1;
MAX(f1)
23

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
23

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
23

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
23

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SHOW TRIGGERS;
Trigger	Event	Table	Statement	Timing	Created	sql_mode	Definer	character_set_client	collation_connection	Database Collation

-------- switch to slave --------
SHOW TRIGGERS;
Trigger	Event	Table	Statement	Timing	Created	sql_mode	Definer	character_set_client	collation_connection	Database Collation

-------- switch to master -------

######## CREATE USER user1@localhost ########

-------- switch to master -------
INSERT INTO t1 SET f1= 23 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
24

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
23

-------- switch to master -------
CREATE USER user1@localhost;
SELECT MAX(f1) FROM t1;
MAX(f1)
24

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
24

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
24

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
24

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SELECT user FROM mysql.user WHERE user = 'user1';
user
user1

-------- switch to slave --------
SELECT user FROM mysql.user WHERE user = 'user1';
user
user1

-------- switch to master -------

######## RENAME USER user1@localhost TO rename1@localhost ########

-------- switch to master -------
INSERT INTO t1 SET f1= 24 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
25

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
24

-------- switch to master -------
RENAME USER user1@localhost TO rename1@localhost;
SELECT MAX(f1) FROM t1;
MAX(f1)
25

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
25

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
25

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
25

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SELECT user FROM mysql.user WHERE user = 'rename1';
user
rename1

-------- switch to slave --------
SELECT user FROM mysql.user WHERE user = 'rename1';
user
rename1

-------- switch to master -------

######## DROP USER rename1@localhost ########

-------- switch to master -------
INSERT INTO t1 SET f1= 25 + 1;
SELECT MAX(f1) FROM t1;
MAX(f1)
26

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
25

-------- switch to master -------
DROP USER rename1@localhost;
SELECT MAX(f1) FROM t1;
MAX(f1)
26

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
26

-------- switch to master -------
ROLLBACK;
SELECT MAX(f1) FROM t1;
MAX(f1)
26

TEST-INFO: MASTER: The INSERT is committed (Succeeded)

-------- switch to slave --------
SELECT MAX(f1) FROM t1;
MAX(f1)
26

TEST-INFO: SLAVE:  The INSERT is committed (Succeeded)

-------- switch to master -------
SELECT user FROM mysql.user WHERE user = 'rename1';
user

-------- switch to slave --------
SELECT user FROM mysql.user WHERE user = 'rename1';
user
use test;

-------- switch to master -------
DROP DATABASE mysqltest1;
DROP DATABASE mysqltest3;

Filemanager

Name Type Size Permission Actions
rpl000001.a.result File 6 B 0644
rpl000001.b.result File 21 B 0644
rpl_000010.result File 676 B 0644
rpl_000011.result File 772 B 0644
rpl_000013.result File 893 B 0644
rpl_000017.result File 818 B 0644
rpl_4threads_deadlock.result File 2.41 KB 0644
rpl_DML_error.result File 2.03 KB 0644
rpl_EE_err.result File 602 B 0644
rpl_LD_INFILE.result File 1.7 KB 0644
rpl_alter.result File 899 B 0644
rpl_alter_db.result File 699 B 0644
rpl_alter_repository.result File 14.3 KB 0644
rpl_alter_user.result File 2.58 KB 0644
rpl_apply_binlog_with_anonymous_gtid.result File 972 B 0644
rpl_apply_binlog_with_anonymous_gtid_when_gtid_mode_on.result File 1002 B 0644
rpl_apply_binlog_with_gtid_when_gtid_mode_off.result File 1005 B 0644
rpl_auto_increment.result File 7.16 KB 0644
rpl_auto_increment_11932.result File 1.51 KB 0644
rpl_auto_increment_bug33029.result File 1.03 KB 0644
rpl_auto_increment_bug45679.result File 3.03 KB 0644
rpl_auto_increment_update_failure.result File 46.41 KB 0644
rpl_autogen_query_multi_byte_char.result File 1.41 KB 0644
rpl_autoinc_lock_style.result File 759 B 0644
rpl_avoid_temporal_upgrade.result File 8.91 KB 0644
rpl_begin_commit_rollback.result File 15.77 KB 0644
rpl_binlog_corruption.result File 1.42 KB 0644
rpl_binlog_errors.result File 8.94 KB 0644
rpl_binlog_failed_drop_table.result File 1.45 KB 0644
rpl_binlog_format_errors.result File 8.25 KB 0644
rpl_binlog_gcommit_options.result File 721 B 0644
rpl_binlog_grant.result File 1.78 KB 0644
rpl_binlog_index.result File 1.7 KB 0644
rpl_bit.result File 2.92 KB 0644
rpl_bit_npk.result File 3.72 KB 0644
rpl_blackhole.result File 2.86 KB 0644
rpl_bug26395.result File 1.12 KB 0644
rpl_bug31076.result File 4.07 KB 0644
rpl_bug33931.result File 1.27 KB 0644
rpl_bug37426.result File 786 B 0644
rpl_bug38694.result File 443 B 0644
rpl_bug41902.result File 1.38 KB 0644
rpl_change_master.result File 5.58 KB 0644
rpl_change_master_crash_safe.result File 3.87 KB 0644
rpl_change_master_dbug.result File 672 B 0644
rpl_charset.result File 4.31 KB 0644
rpl_charset_sjis.result File 979 B 0644
rpl_check_gtid.result File 14.28 KB 0644
rpl_checksum.result File 6.03 KB 0644
rpl_checksum_cache.result File 4.51 KB 0644
rpl_checksum_undef.result File 760 B 0644
rpl_circular_for_4_hosts.result File 9.09 KB 0644
rpl_colSize.result File 5.48 KB 0644
rpl_commit_after_flush.result File 660 B 0644
rpl_concurrency_error.result File 6.39 KB 0644
rpl_conditional_comments.result File 3.72 KB 0644
rpl_connection.result File 1.51 KB 0644
rpl_corruption.result File 2.55 KB 0644
rpl_crash_safe_master.result File 5.85 KB 0644
rpl_crc_check.result File 704 B 0644
rpl_create_database.result File 1.97 KB 0644
rpl_create_drop_temp_table.result File 720 B 0644
rpl_create_if_not_exists.result File 4.22 KB 0644
rpl_create_tmp_table_if_not_exists.result File 1.49 KB 0644
rpl_critical_errors.result File 33 B 0644
rpl_critical_errors.result.txt File 1.31 KB 0644
rpl_cross_version.result File 939 B 0644
rpl_current_user.result File 7.25 KB 0644
rpl_db_stmts_ignored.result File 4.12 KB 0644
rpl_ddl.result File 30.17 KB 0644
rpl_deadlock_innodb.result File 3.22 KB 0644
rpl_delayed_slave.result File 7.57 KB 0644
rpl_delete_no_where.result File 713 B 0644
rpl_do_db_filter.result File 1.31 KB 0644
rpl_do_grant.result File 12.78 KB 0644
rpl_do_table_filter_insensitive.result File 1.66 KB 0644
rpl_do_table_filter_sensitive.result File 1.65 KB 0644
rpl_double_free_bug.result File 1.71 KB 0644
rpl_drop.result File 563 B 0644
rpl_drop_db.result File 1.2 KB 0644
rpl_drop_db_fail.result File 1.07 KB 0644
rpl_drop_temp.result File 1.72 KB 0644
rpl_drop_temp_gtid.result File 1.21 KB 0644
rpl_drop_temp_tbl_with_rewrite_db.result File 1.69 KB 0644
rpl_drop_view.result File 1.21 KB 0644
rpl_dual_pos_advance.result File 2.43 KB 0644
rpl_dump_thread_kill.result File 936 B 0644
rpl_empty_master_host.result File 882 B 0644
rpl_empty_multi_update.result File 1.31 KB 0644
rpl_err_ignoredtable.result File 1.31 KB 0644
rpl_events.result File 8.24 KB 0644
rpl_extra_col_master_innodb.result File 26.37 KB 0644
rpl_extra_col_master_myisam.result File 26.37 KB 0644
rpl_extra_col_slave_innodb.result File 18.53 KB 0644
rpl_extra_col_slave_myisam.result File 18.53 KB 0644
rpl_extra_row_data.result File 2 KB 0644
rpl_failed_optimize.result File 743 B 0644
rpl_filter_database.result File 560 B 0644
rpl_filter_tables_not_exist.result File 7.36 KB 0644
rpl_filter_warnings.result File 1.63 KB 0644
rpl_flush_logs.result File 2.99 KB 0644
rpl_flushlog_loop.result File 1.36 KB 0644
rpl_foreign_key_innodb.result File 1.68 KB 0644
rpl_free_items.result File 601 B 0644
rpl_function_defaults.result File 4.18 KB 0644
rpl_gap_in_retrieved_gtid_set.result File 1.99 KB 0644
rpl_general_log.result File 936 B 0644
rpl_geometry.result File 802 B 0644
rpl_get_lock.result File 1.45 KB 0644
rpl_get_master_version_and_clock.result File 3.05 KB 0644
rpl_grant.result File 9.79 KB 0644
rpl_grant_plugin.result File 803 B 0644
rpl_group_commit_deadlock.result File 1.14 KB 0644
rpl_gtid_binary_log_as_relay_log.result File 1.1 KB 0644
rpl_gtid_binlog_errors.result File 8.94 KB 0644
rpl_gtid_delete_memory_table_after_start_server.result File 3.74 KB 0644
rpl_gtid_deleted_binlog_fail_to_connect.result File 2.36 KB 0644
rpl_gtid_do_table_filter_insensitive.result File 1.79 KB 0644
rpl_gtid_do_table_filter_sensitive.result File 1.79 KB 0644
rpl_gtid_drop_mem_table.result File 5.43 KB 0644
rpl_gtid_drop_table.result File 12.4 KB 0644
rpl_gtid_empty_transaction.result File 4.2 KB 0644
rpl_gtid_execution.result File 78.69 KB 0644
rpl_gtid_failover.result File 1.61 KB 0644
rpl_gtid_heartbeat_2slave.result File 2.31 KB 0644
rpl_gtid_ignore_table_filter_insensitive.result File 1.8 KB 0644
rpl_gtid_ignore_table_filter_sensitive.result File 1.8 KB 0644
rpl_gtid_loaddata_s.result File 938 B 0644
rpl_gtid_mode.result File 5.9 KB 0644
rpl_gtid_mode_off_new_master.result File 1.27 KB 0644
rpl_gtid_mode_on_new_master.result File 1.26 KB 0644
rpl_gtid_mts_relay_log_recovery_auto_pos_on_off.result File 5.1 KB 0644
rpl_gtid_parallel.result File 1.61 KB 0644
rpl_gtid_purged_fail_to_connect.result File 2.91 KB 0644
rpl_gtid_purged_maintained.result File 6.99 KB 0644
rpl_gtid_replay_relaylog.result File 1.13 KB 0644
rpl_gtid_row_event_max_size.result File 3.48 KB 0644
rpl_gtid_row_show_relaylog_events.result File 9.86 KB 0644
rpl_gtid_server_sighup.result File 1.88 KB 0644
rpl_gtid_sql_until_before_after.result File 5.04 KB 0644
rpl_gtid_stm_insert_delayed.result File 2.49 KB 0644
rpl_gtid_stm_mix_show_relaylog_events.result File 8.76 KB 0644
rpl_gtid_temp_table.result File 45.55 KB 0644
rpl_gtid_transaction_split_across_relay_logs.result File 1.51 KB 0644
rpl_gtid_validate_slave_gtids.result File 2.39 KB 0644
rpl_gtids_restart_slave_io_lost_trx.result File 2.36 KB 0644
rpl_heartbeat.result File 5.9 KB 0644
rpl_heartbeat_2slaves.result File 2.31 KB 0644
rpl_heartbeat_basic.result File 19.9 KB 0644
rpl_heartbeat_ssl.result File 1.39 KB 0644
rpl_idempotency.result File 2.18 KB 0644
rpl_ignore_db_filter.result File 1.31 KB 0644
rpl_ignore_grant.result File 1.77 KB 0644
rpl_ignore_revoke.result File 1.45 KB 0644
rpl_ignore_table.result File 6.53 KB 0644
rpl_ignore_table_filter_insensitive.result File 1.66 KB 0644
rpl_ignore_table_filter_sensitive.result File 1.66 KB 0644
rpl_ignore_table_update.result File 988 B 0644
rpl_incident.result File 1.02 KB 0644
rpl_init_slave.result File 1.2 KB 0644
rpl_init_slave_errors.result File 1.08 KB 0644
rpl_innodb_bug28430.result File 5.27 KB 0644
rpl_innodb_bug30888.result File 1.35 KB 0644
rpl_innodb_mixed_ddl.result File 5.8 KB 0644
rpl_innodb_mixed_dml.result File 34.88 KB 0644
rpl_insert.result File 831 B 0644
rpl_insert_id.result File 11.51 KB 0644
rpl_insert_id_pk.result File 2.12 KB 0644
rpl_insert_ignore.result File 3.68 KB 0644
rpl_insert_on_update.result File 741 B 0644
rpl_invoked_features.result File 7.21 KB 0644
rpl_ip_mix.result File 2.72 KB 0644
rpl_ip_mix2.result File 2.72 KB 0644
rpl_ipv4_as_ipv6.result File 4.51 KB 0644
rpl_ipv6.result File 2.66 KB 0644
rpl_kill_query.result File 4.2 KB 0644
rpl_killed_ddl.result File 4.88 KB 0644
rpl_known_bugs_detection.result File 4 KB 0644
rpl_lcase_tblnames_rewrite_db.result File 1.21 KB 0644
rpl_loaddata.result File 5.89 KB 0644
rpl_loaddata_charset.result File 2.41 KB 0644
rpl_loaddata_fatal.result File 939 B 0644
rpl_loaddata_m.result File 1.18 KB 0644
rpl_loaddata_map.result File 1.68 KB 0644
rpl_loaddata_s.result File 745 B 0644
rpl_loaddata_simple.result File 1.83 KB 0644
rpl_loaddata_symlink.result File 738 B 0644
rpl_loaddatalocal.result File 4.88 KB 0644
rpl_loadfile.result File 3.18 KB 0644
rpl_locale.result File 805 B 0644
rpl_log_pos.result File 1.66 KB 0644
rpl_lost_events_on_rotate.result File 818 B 0644
rpl_low_slave_net_time_out.result File 1.26 KB 0644
rpl_manual_change_index_file.result File 2.64 KB 0644
rpl_many_optimize.result File 608 B 0644
rpl_master_connection.result File 17.91 KB 0644
rpl_master_pos_wait.result File 2.15 KB 0644
rpl_migration_crash_safe.result File 1.14 KB 0644
rpl_misc_functions.result File 2.55 KB 0644
rpl_mix_found_rows.result File 3.61 KB 0644
rpl_mix_insert_delayed.result File 2.28 KB 0644
rpl_mix_missing_data_on_slave.result File 725 B 0644
rpl_mixed_binlog_max_cache_size.result File 7.72 KB 0644
rpl_mixed_bit_pk.result File 1.86 KB 0644
rpl_mixed_ddl_dml.result File 1.63 KB 0644
rpl_mixed_drop_create_temp_table.result File 95.87 KB 0644
rpl_mixed_implicit_commit_binlog.result File 28.06 KB 0644
rpl_mixed_mixing_engines.result File 618.62 KB 0644
rpl_mixed_row_innodb.result File 3.08 KB 0644
rpl_mts_debug.result File 4.52 KB 0644
rpl_mts_execute_partial_trx_with_auto_pos_off.result File 1007 B 0644
rpl_mts_execute_partial_trx_with_auto_pos_on.result File 1007 B 0644
rpl_mts_gtids_restart_slave_io_lost_trx.result File 2.36 KB 0644
rpl_mts_pending_max.result File 6.42 KB 0644
rpl_mts_relay_log_post_crash_recovery.result File 3.32 KB 0644
rpl_mts_relay_log_recovery_on_error.result File 2.81 KB 0644
rpl_mts_slave_hang_with_partial_trx.result File 1 KB 0644
rpl_mts_stop_slave.result File 2.22 KB 0644
rpl_mts_stop_slave_report_pos.result File 3.59 KB 0644
rpl_multi_delete.result File 743 B 0644
rpl_multi_delete2.result File 1.27 KB 0644
rpl_multi_engine.result File 17.78 KB 0644
rpl_multi_update.result File 1.05 KB 0644
rpl_multi_update2.result File 1.5 KB 0644
rpl_multi_update3.result File 3.96 KB 0644
rpl_multi_update4.result File 971 B 0644
rpl_mysql_upgrade.result File 929 B 0644
rpl_mysqlbinlog_gtid_on.result File 1.46 KB 0644
rpl_name_const.result File 976 B 0644
rpl_no_gtid_delete_memory_table_after_start_server.result File 1.59 KB 0644
rpl_non_direct_mixed_mixing_engines.result File 631.89 KB 0644
rpl_non_direct_row_mixing_engines.result File 697.54 KB 0644
rpl_non_direct_stm_mixing_engines.result File 627.2 KB 0644
rpl_nondeterministic_functions.result File 1.05 KB 0644
rpl_not_null_innodb.result File 6.81 KB 0644
rpl_not_null_myisam.result File 6.81 KB 0644
rpl_optimize.result File 1.27 KB 0644
rpl_packet.result File 6.65 KB 0644
rpl_parallel.result File 5.81 KB 0644
rpl_parallel_change_master.result File 4.74 KB 0644
rpl_parallel_conf_limits.result File 1.6 KB 0644
rpl_parallel_conflicts.result File 2.23 KB 0644
rpl_parallel_ddl.result File 19.47 KB 0644
rpl_parallel_fallback.result File 868 B 0644
rpl_parallel_innodb.result File 4.03 KB 0644
rpl_parallel_load_data.result File 1.08 KB 0644
rpl_parallel_multi_db.result File 13.54 KB 0644
rpl_parallel_seconds_behind_master.result File 1.82 KB 0644
rpl_parallel_show_binlog_events_purge_logs.result File 757 B 0644
rpl_parallel_start_stop.result File 5.91 KB 0644
rpl_parallel_switch_sequential.result File 2.88 KB 0644
rpl_parallel_temp_query.result File 3.37 KB 0644
rpl_parallel_worker_error.result File 2.37 KB 0644
rpl_partition_archive.result File 6.47 KB 0644
rpl_partition_innodb.result File 6.46 KB 0644
rpl_partition_memory.result File 6.46 KB 0644
rpl_partition_myisam.result File 6.46 KB 0644
rpl_plugin_load.result File 1.74 KB 0644
rpl_ps.result File 1.78 KB 0644
rpl_rbr_to_sbr.result File 1.61 KB 0644
rpl_read_old_relay_log_info.result File 868 B 0644
rpl_read_only.result File 2.78 KB 0644
rpl_recovery_empty_sqlthd_pos.result File 1.43 KB 0644
rpl_recovery_replicate_same_server_id.result File 1.49 KB 0644
rpl_relay_log_recovery_positions.result File 1.54 KB 0644
rpl_relay_log_space_synchronization.result File 1016 B 0644
rpl_relay_space_innodb.result File 1.02 KB 0644
rpl_relay_space_myisam.result File 1.02 KB 0644
rpl_relayrotate.result File 815 B 0644
rpl_relayspace.result File 781 B 0644
rpl_replicate_do.result File 2.49 KB 0644
rpl_replicate_event_after_sync_stage.result File 1.17 KB 0644
rpl_replicate_ignore_db.result File 985 B 0644
rpl_replicate_rewrite_db.result File 506 B 0644
rpl_report.result File 1.43 KB 0644
rpl_report_port.result File 1.12 KB 0644
rpl_reset_slave_fail.result File 1.74 KB 0644
rpl_rewrite_db_filter.result File 1.94 KB 0644
rpl_rewrt_db.result File 6.73 KB 0644
rpl_rotate_gtid.result File 1.48 KB 0644
rpl_rotate_logs.result File 4.74 KB 0644
rpl_rotate_purge_deadlock.result File 1.29 KB 0644
rpl_rotate_row_trans.result File 1.52 KB 0644
rpl_row_001.result File 1.27 KB 0644
rpl_row_4_bytes.result File 933 B 0644
rpl_row_NOW.result File 1.21 KB 0644
rpl_row_USER.result File 2.34 KB 0644
rpl_row_UUID.result File 1.38 KB 0644
rpl_row_basic_11bugs.result File 7 KB 0644
rpl_row_basic_2myisam.result File 20.02 KB 0644
rpl_row_basic_3innodb.result File 20.37 KB 0644
rpl_row_basic_8partition.result File 31.82 KB 0644
rpl_row_basic_allow_batching.result File 20.31 KB 0644
rpl_row_binlog_max_cache_size.result File 7.68 KB 0644
rpl_row_blob_innodb.result File 5.22 KB 0644
rpl_row_blob_myisam.result File 5.22 KB 0644
rpl_row_colSize.result File 6.44 KB 0644
rpl_row_conflicts.result File 3.89 KB 0644
rpl_row_corrupt.result File 706 B 0644
rpl_row_corruption.result File 2.68 KB 0644
rpl_row_crash_safe.result File 94.51 KB 0644
rpl_row_create_select.result File 1.2 KB 0644
rpl_row_create_table.result File 12.21 KB 0644
rpl_row_delayed_ins.result File 1.05 KB 0644
rpl_row_drop.result File 1.69 KB 0644
rpl_row_drop_create_temp_table.result File 99.54 KB 0644
rpl_row_err_ignoredtable.result File 1.85 KB 0644
rpl_row_event_max_size.result File 3.36 KB 0644
rpl_row_find_row.result File 1.78 KB 0644
rpl_row_flsh_tbls.result File 1.21 KB 0644
rpl_row_func001.result File 881 B 0644
rpl_row_func002.result File 1.25 KB 0644
rpl_row_func003.result File 1.21 KB 0644
rpl_row_hash_scan.result File 4.54 KB 0644
rpl_row_hash_scan_sanity.result File 7.02 KB 0644
rpl_row_idempotency.result File 11.29 KB 0644
rpl_row_ignorable_event.result File 37.15 KB 0644
rpl_row_image_check_for_insert_select.result File 2.32 KB 0644
rpl_row_img_blobs.result File 168.72 KB 0644
rpl_row_img_eng_full.result File 139.69 KB 0644
rpl_row_img_eng_min.result File 131.41 KB 0644
rpl_row_img_eng_noblob.result File 131.39 KB 0644
rpl_row_img_idx_full.result File 121.06 KB 0644
rpl_row_img_idx_min.result File 121.84 KB 0644
rpl_row_img_idx_noblob.result File 121.82 KB 0644
rpl_row_img_misc.result File 1000 B 0644
rpl_row_img_sanity.result File 26.09 KB 0644
rpl_row_implicit_commit_binlog.result File 29.69 KB 0644
rpl_row_inexist_tbl.result File 1.06 KB 0644
rpl_row_insert_delayed.result File 2.25 KB 0644
rpl_row_lcase_tblnames.result File 1.53 KB 0644
rpl_row_loaddata_concurrent.result File 4.99 KB 0644
rpl_row_loaddata_m.result File 621 B 0644
rpl_row_log.result File 7.15 KB 0644
rpl_row_log_innodb.result File 7.22 KB 0644
rpl_row_max_relay_size.result File 1.97 KB 0644
rpl_row_merge_engine.result File 1.15 KB 0644
rpl_row_mixing_engines.result File 697.54 KB 0644
rpl_row_mts_crash_safe.result File 283.73 KB 0644
rpl_row_mts_rec_crash_safe.result File 283.73 KB 0644
rpl_row_mts_show_relaylog_events.result File 9.98 KB 0644
rpl_row_multi_query.result File 1.01 KB 0644
rpl_row_mysqlbinlog.result File 10.16 KB 0644
rpl_row_rec_comp_innodb.result File 1.99 KB 0644
rpl_row_rec_comp_myisam.result File 2.45 KB 0644
rpl_row_record_find_myisam.result File 870 B 0644
rpl_row_reset_slave.result File 4.45 KB 0644
rpl_row_rollback_to_savepoint.result File 15.42 KB 0644
rpl_row_show_relaylog_events.result File 10.02 KB 0644
rpl_row_slave_skip_error_all.result File 2.22 KB 0644
rpl_row_sp001.result File 1.9 KB 0644
rpl_row_sp002_innodb.result File 4.29 KB 0644
rpl_row_sp003.result File 1.5 KB 0644
rpl_row_sp005.result File 2.46 KB 0644
rpl_row_sp006_InnoDB.result File 1.52 KB 0644
rpl_row_sp007_innodb.result File 1.23 KB 0644
rpl_row_sp008.result File 1.09 KB 0644
rpl_row_sp009.result File 1.86 KB 0644
rpl_row_sp010.result File 1.57 KB 0644
rpl_row_sp011.result File 2.23 KB 0644
rpl_row_sp012.result File 1.92 KB 0644
rpl_row_tabledefs_2myisam.result File 5.52 KB 0644
rpl_row_tabledefs_3innodb.result File 5.52 KB 0644
rpl_row_tbl_metadata.result File 7.99 KB 0644
rpl_row_trig001.result File 1.45 KB 0644
rpl_row_trig002.result File 2.75 KB 0644
rpl_row_trig003.result File 3.93 KB 0644
rpl_row_trig004.result File 1.17 KB 0644
rpl_row_trunc_temp.result File 832 B 0644
rpl_row_unsafe_funcs.result File 846 B 0644
rpl_row_until.result File 3.21 KB 0644
rpl_row_utf16.result File 860 B 0644
rpl_row_utf32.result File 1.19 KB 0644
rpl_row_view01.result File 3.27 KB 0644
rpl_row_wide_table.result File 3.53 KB 0644
rpl_savepoint.result File 1.06 KB 0644
rpl_sbm_fake_rotate_event.result File 1.03 KB 0644
rpl_sbm_previous_gtid_event.result File 2.71 KB 0644
rpl_seconds_behind_master.result File 1.5 KB 0644
rpl_semi_sync.result File 14.49 KB 0644
rpl_semi_sync_deadlock.result File 1.05 KB 0644
rpl_semi_sync_event.result File 2.41 KB 0644
rpl_semi_sync_future_logpos.result File 1.3 KB 0644
rpl_semi_sync_group_commit_deadlock.result File 1.79 KB 0644
rpl_semi_sync_non_group_commit_deadlock.result File 1.87 KB 0644
rpl_semi_sync_shutdown_hang.result File 1.02 KB 0644
rpl_semi_sync_uninstall_plugin.result File 1.97 KB 0644
rpl_sequential.result File 5.9 KB 0644
rpl_server_id1.result File 844 B 0644
rpl_server_id2.result File 1.16 KB 0644
rpl_server_id_ignore.result File 2.42 KB 0644
rpl_server_uuid.result File 6.4 KB 0644
rpl_session_var.result File 1.76 KB 0644
rpl_set_charset.result File 1.72 KB 0644
rpl_set_null_innodb.result File 1.22 KB 0644
rpl_set_null_myisam.result File 1.22 KB 0644
rpl_show_errors.result File 1.89 KB 0644
rpl_show_master_info_file.result File 576 B 0644
rpl_show_slave_hosts.result File 1.18 KB 0644
rpl_show_slave_running.result File 1.67 KB 0644
rpl_show_slave_status_deadlock.result File 1.39 KB 0644
rpl_skip_ddl_errors_cli.result File 711 B 0644
rpl_skip_error.result File 3.5 KB 0644
rpl_skip_incident.result File 843 B 0644
rpl_skip_slave_err_warnings.result File 668 B 0644
rpl_slave_grp_exec.result File 3.21 KB 0644
rpl_slave_load_in.result File 1.06 KB 0644
rpl_slave_load_remove_tmpfile.result File 1.56 KB 0644
rpl_slave_load_tmpdir_not_exist.result File 681 B 0644
rpl_slave_skip.result File 7.64 KB 0644
rpl_slave_start.result File 1.45 KB 0644
rpl_slave_status.result File 2.2 KB 0644
rpl_slow_query_log.result File 3.99 KB 0644
rpl_sp.result File 36.94 KB 0644
rpl_sp004.result File 1.98 KB 0644
rpl_sp_effects.result File 4.77 KB 0644
rpl_sp_privileges.result File 2.35 KB 0644
rpl_spec_variables.result File 8.04 KB 0644
rpl_special_charset.result File 568 B 0644
rpl_sporadic_master.result File 979 B 0644
rpl_sql_thread_error.result File 767 B 0644
rpl_sql_thread_killed_waiting_commit_lock.result File 1.81 KB 0644
rpl_ssl.result File 3.31 KB 0644
rpl_ssl1.result File 3.51 KB 0644
rpl_stm_000001.result File 3.01 KB 0644
rpl_stm_EE_err2.result File 1.06 KB 0644
rpl_stm_auto_increment_bug33029.result File 6.16 KB 0644
rpl_stm_binlog_max_cache_size.result File 7.72 KB 0644
rpl_stm_conflicts.result File 2.03 KB 0644
rpl_stm_drop_create_temp_table.result File 100.14 KB 0644
rpl_stm_flsh_tbls.result File 1.21 KB 0644
rpl_stm_found_rows.result File 3.07 KB 0644
rpl_stm_ignore.result File 2.18 KB 0644
rpl_stm_implicit_commit_binlog.result File 28.09 KB 0644
rpl_stm_innodb.result File 3.6 KB 0644
rpl_stm_insert_delayed.result File 2.59 KB 0644
rpl_stm_lcase_tblnames.result File 1.45 KB 0644
rpl_stm_loaddata_concurrent.result File 7.08 KB 0644
rpl_stm_loadfile.result File 3.17 KB 0644
rpl_stm_log.result File 7.66 KB 0644
rpl_stm_max_relay_size.result File 1.97 KB 0644
rpl_stm_mix_mts_show_relaylog_events.result File 8.86 KB 0644
rpl_stm_mix_rollback_to_savepoint.result File 11.75 KB 0644
rpl_stm_mix_show_relaylog_events.result File 8.89 KB 0644
rpl_stm_mixed_crash_safe.result File 79.39 KB 0644
rpl_stm_mixed_mts_crash_safe.result File 270.29 KB 0644
rpl_stm_mixed_mts_rec_crash_safe.result File 270.29 KB 0644
rpl_stm_mixed_mts_rec_crash_safe_checksum.result File 270.29 KB 0644
rpl_stm_mixed_mts_rec_crash_safe_small.result File 66.49 KB 0644
rpl_stm_mixing_engines.result File 615.14 KB 0644
rpl_stm_multi_query.result File 1.71 KB 0644
rpl_stm_no_op.result File 1.75 KB 0644
rpl_stm_relay_ign_space.result File 14.77 KB 0644
rpl_stm_reset_slave.result File 4.45 KB 0644
rpl_stm_sql_mode.result File 1 KB 0644
rpl_stm_start_stop_slave.result File 3.56 KB 0644
rpl_stm_stop_middle_group.result File 3.57 KB 0644
rpl_stm_until.result File 4.04 KB 0644
rpl_stm_until_pos_middle_gtid.result File 1.25 KB 0644
rpl_stm_user_variables.result File 7.46 KB 0644
rpl_stop_slave.result File 4.33 KB 0644
rpl_stop_slave_threads_error.result File 871 B 0644
rpl_switch_stm_row_mixed.result File 13.44 KB 0644
rpl_sync.result File 1.97 KB 0644
rpl_temp_table.result File 1.25 KB 0644
rpl_temp_table_mix_row.result File 5.1 KB 0644
rpl_temporal_fractional.result File 4.95 KB 0644
rpl_temporary.result File 5.17 KB 0644
rpl_temporary_error_table_repository.result File 1.9 KB 0644
rpl_temporary_errors.result File 1.34 KB 0644
rpl_test_framework.result File 29.49 KB 0644
rpl_timestamp_upgrage_55.result File 1.02 KB 0644
rpl_timezone.result File 4.68 KB 0644
rpl_tmp_table_and_DDL.result File 9.04 KB 0644
rpl_trigger.result File 21.02 KB 0644
rpl_trunc_temp.result File 1002 B 0644
rpl_truncate_2myisam.result File 1.83 KB 0644
rpl_truncate_3innodb.result File 1.83 KB 0644
rpl_typeconv.result File 37.54 KB 0644
rpl_typeconv_innodb.result File 867 B 0644
rpl_udf.result File 5.12 KB 0644
rpl_unknown_ignorable_event.result File 1.28 KB 0644
rpl_unsafe_statements.result File 2.01 KB 0644
rpl_user.result File 4.49 KB 0644
rpl_user_variables.result File 5.76 KB 0644
rpl_variables.result File 23.22 KB 0644
rpl_variables_stm.result File 22.02 KB 0644
rpl_view.result File 3.74 KB 0644
rpl_view_multi.result File 3.08 KB 0644
rpl_zombie_dump_threads.result File 720 B 0644