[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.146.255.161: ~ $
include/master-slave.inc
Warnings:
Note	####	Sending passwords in plain text without SSL/TLS is extremely insecure.
Note	####	Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
[connection master]

***********************************************************
***********************************************************
***************** Start of Testing ************************
***********************************************************
***********************************************************
* This test format == binlog_format	ROW and engine == 'InnoDB'
***********************************************************
***********************************************************

***** Testing more columns on the Master *****

CREATE TABLE t1 (f1 INT, f2 INT, f3 INT PRIMARY KEY, f4 CHAR(20),
/* extra */
f5 FLOAT DEFAULT '2.00', 
f6 CHAR(4) DEFAULT 'TEST',
f7 INT DEFAULT '0',
f8 TEXT,
f9 LONGBLOB,
f10 BIT(63),
f11 VARBINARY(64))ENGINE='InnoDB';

* Alter Table on Slave and drop columns f5 through f11 *

alter table t1 drop f5, drop f6, drop f7, drop f8, drop f9, drop f10, drop f11;

* Insert data in Master then update and delete some rows*

* Select count and 20 rows from Master *

SELECT COUNT(*) FROM t1;
COUNT(*)
40

SELECT f1,f2,f3,f4,f5,f6,f7,f8,f9,
hex(f10),hex(f11) FROM t1 ORDER BY f3 LIMIT 20;
f1	f2	f3	f4	f5	f6	f7	f8	f9	hex(f10)	hex(f11)
2	2	2	second	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
3	3	3	next	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
5	5	5	second	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
6	6	6	next	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
8	8	8	second	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
9	9	9	next	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
11	11	11	second	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
12	12	12	next	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
14	14	14	second	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
15	15	15	next	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
17	17	17	second	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
18	18	18	next	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
20	20	20	second	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
21	21	21	next	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
23	23	23	second	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
24	24	24	next	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
26	26	26	second	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
27	27	27	next	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
29	29	29	second	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456
30	30	30	next	2	kaks	2	got stolen from the paradise	very fat blob	1555	123456

* Select count and 20 rows from Slave *

SELECT COUNT(*) FROM t1;
COUNT(*)
40

SELECT * FROM t1 ORDER BY f3 LIMIT 20;
f1	f2	f3	f4
2	2	2	second
3	3	3	next
5	5	5	second
6	6	6	next
8	8	8	second
9	9	9	next
11	11	11	second
12	12	12	next
14	14	14	second
15	15	15	next
17	17	17	second
18	18	18	next
20	20	20	second
21	21	21	next
23	23	23	second
24	24	24	next
26	26	26	second
27	27	27	next
29	29	29	second
30	30	30	next
include/check_slave_is_running.inc

***** Testing Altering table def scenario *****

CREATE TABLE t2 (f1 INT, f2 INT, f3 INT PRIMARY KEY, f4 CHAR(20),
/* extra */
f5 DOUBLE DEFAULT '2.00', 
f6 ENUM('a', 'b', 'c') default 'a',
f7 DECIMAL(17,9) default '1000.00',
f8 MEDIUMBLOB,
f9 NUMERIC(6,2) default '2000.00',
f10 VARCHAR(1024),
f11 BINARY(20) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
f12 SET('a', 'b', 'c') default 'b')
ENGINE='InnoDB';

CREATE TABLE t3 (f1 INT, f2 INT, f3 INT PRIMARY KEY, f4 CHAR(20),
/* extra */
f5 DOUBLE DEFAULT '2.00', 
f6 ENUM('a', 'b', 'c') default 'a',
f8 MEDIUMBLOB,
f10 VARCHAR(1024),
f11 BINARY(20) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
f12 SET('a', 'b', 'c') default 'b')
ENGINE='InnoDB';

CREATE TABLE t4 (f1 INT, f2 INT, f3 INT PRIMARY KEY, f4 CHAR(20),
/* extra */
f5 DOUBLE DEFAULT '2.00', 
f6 DECIMAL(17,9) default '1000.00',
f7 MEDIUMBLOB,
f8 NUMERIC(6,2) default '2000.00',
f9 VARCHAR(1024),
f10 BINARY(20) not null default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
f11 CHAR(255))
ENGINE='InnoDB';

CREATE TABLE t31 (f1 INT, f2 INT, f3 INT PRIMARY KEY, f4 CHAR(20),
/* extra */
f5  BIGINT,
f6  BLOB,
f7  DATE,
f8  DATETIME,
f9  FLOAT,
f10 INT,
f11 LONGBLOB,
f12 LONGTEXT,
f13 MEDIUMBLOB,
f14 MEDIUMINT,
f15 MEDIUMTEXT,
f16 REAL,
f17 SMALLINT,
f18 TEXT,
f19 TIME,
f20 TIMESTAMP,
f21 TINYBLOB,
f22 TINYINT,
f23 TINYTEXT,
f24 YEAR,
f25 BINARY(255),
f26 BIT(64),
f27 CHAR(255),
f28 DECIMAL(30,7),
f29 DOUBLE,
f30 ENUM ('a','b', 'c') default 'a',
f31 FLOAT,
f32 NUMERIC(17,9),
f33 SET ('a', 'b', 'c') default 'b',
f34 VARBINARY(1025),
f35 VARCHAR(257)       
) ENGINE='InnoDB';

** Alter tables on slave and drop columns **

alter table t2 drop f5, drop f6, drop f7, drop f8, drop f9, drop f10, drop f11, drop
f12;
alter table t3 drop f5, drop f6, drop f8, drop f10, drop f11, drop f12;
alter table t4 drop f5, drop f6, drop f7, drop f8, drop f9, drop f10, drop f11;
alter table t31 
drop f5, drop f6, drop f7, drop f8, drop f9, drop f10, drop f11,
drop f12, drop f13, drop f14, drop f15, drop f16, drop f17, drop f18,
drop f19, drop f20, drop f21, drop f22, drop f23, drop f24, drop f25,
drop f26, drop f27, drop f28, drop f29, drop f30, drop f31, drop f32,
drop f33, drop f34, drop f35;

** Insert Data into Master **
INSERT into t2 set f1=1, f2=1, f3=1, f4='first', f8='f8: medium size blob', f10='f10:
some var char';
INSERT into t2 values (2, 2, 2, 'second',
2.0, 'b', 2000.0002, 'f8: medium size blob', 2000, 'f10: some var char',
'01234567', 'c'),
(3, 3, 3, 'third',
3.0, 'b', 3000.0003, 'f8: medium size blob', 3000, 'f10: some var char',
'01234567', 'c');
INSERT into t3 set f1=1, f2=1, f3=1, f4='first', f10='f10: some var char';
INSERT into t4 set f1=1, f2=1, f3=1, f4='first', f7='f7: medium size blob', f10='f10:
binary data';
INSERT into t31 set f1=1, f2=1, f3=1, f4='first';
INSERT into t31 set f1=1, f2=1, f3=2, f4='second',
f9=2.2,  f10='seven samurai', f28=222.222, f35='222';
Warnings:
Warning	1366	Incorrect integer value: 'seven samurai' for column 'f10' at row 1
INSERT into t31 values (1, 1, 3, 'third',
/* f5  BIGINT,  */            333333333333333333333333,
/* f6  BLOB,  */              '3333333333333333333333',
/* f7  DATE,  */              '2007-07-18',
/* f8  DATETIME,  */          "2007-07-18",
/* f9  FLOAT,  */             3.33333333,
/* f10 INT,  */               333333333,
/* f11 LONGBLOB,  */          '3333333333333333333',
/* f12 LONGTEXT,  */          '3333333333333333333',
/* f13 MEDIUMBLOB,  */        '3333333333333333333',
/* f14 MEDIUMINT,  */         33,
/* f15 MEDIUMTEXT,  */        3.3,
/* f16 REAL,  */              3.3,
/* f17 SMALLINT,  */          3,
/* f18 TEXT,  */              '33',
/* f19 TIME,  */              '2:59:58.999',
/* f20 TIMESTAMP,  */         20000303000000,
/* f21 TINYBLOB,  */          '3333',
/* f22 TINYINT,  */           3,
/* f23 TINYTEXT,  */          '3',
/* f24 YEAR,  */              3000,
/* f25 BINARY(255),  */       'three_33333',
/* f26 BIT(64),  */           b'011', 
/* f27 CHAR(255),  */         'three',
/* f28 DECIMAL(30,7),  */     3.333,
/* f29 DOUBLE,  */            3.333333333333333333333333333,
/* f30 ENUM ('a','b','c')*/   'c',
/* f31 FLOAT,  */             3.0,
/* f32 NUMERIC(17,9),  */     3.3333,
/* f33 SET ('a','b','c'),*/   'c',
/*f34 VARBINARY(1025),*/      '3333 minus 3',
/*f35 VARCHAR(257),*/         'three times three'
      );
Warnings:
Warning	1264	Out of range value for column 'f5' at row 1
Warning	1264	Out of range value for column 'f24' at row 1
INSERT into t31 values (1, 1, 4, 'fourth',
/* f5  BIGINT,  */            333333333333333333333333,
/* f6  BLOB,  */              '3333333333333333333333',
/* f7  DATE,  */              '2007-07-18',
/* f8  DATETIME,  */          "2007-07-18",
/* f9  FLOAT,  */             3.33333333,
/* f10 INT,  */               333333333,
/* f11 LONGBLOB,  */          '3333333333333333333',
/* f12 LONGTEXT,  */          '3333333333333333333',
/* f13 MEDIUMBLOB,  */        '3333333333333333333',
/* f14 MEDIUMINT,  */         33,
/* f15 MEDIUMTEXT,  */        3.3,
/* f16 REAL,  */              3.3,
/* f17 SMALLINT,  */          3,
/* f18 TEXT,  */              '33',
/* f19 TIME,  */              '2:59:58.999',
/* f20 TIMESTAMP,  */         20000303000000,
/* f21 TINYBLOB,  */          '3333',
/* f22 TINYINT,  */           3,
/* f23 TINYTEXT,  */          '3',
/* f24 YEAR,  */              3000,
/* f25 BINARY(255),  */       'three_33333',
/* f26 BIT(64),  */           b'011',
/* f27 CHAR(255),  */         'three',
/* f28 DECIMAL(30,7),  */     3.333,
/* f29 DOUBLE,  */            3.333333333333333333333333333,
/* f30 ENUM ('a','b','c')*/   'c',
/* f31 FLOAT,  */             3.0,
/* f32 NUMERIC(17,9),  */     3.3333,
/* f33 SET ('a','b','c'),*/   'c',
/*f34 VARBINARY(1025),*/      '3333 minus 3',
/*f35 VARCHAR(257),*/         'three times three'
       ),
(1, 1, 5, 'fifth',
/* f5  BIGINT,  */            333333333333333333333333,
/* f6  BLOB,  */              '3333333333333333333333',
/* f7  DATE,  */              '2007-07-18',
/* f8  DATETIME,  */          "2007-07-18",
/* f9  FLOAT,  */             3.33333333,
/* f10 INT,  */               333333333,
/* f11 LONGBLOB,  */          '3333333333333333333',
/* f12 LONGTEXT,  */          '3333333333333333333',
/* f13 MEDIUMBLOB,  */        '3333333333333333333',
/* f14 MEDIUMINT,  */         33,
/* f15 MEDIUMTEXT,  */        3.3,
/* f16 REAL,  */              3.3,
/* f17 SMALLINT,  */          3,
/* f18 TEXT,  */              '33',
/* f19 TIME,  */              '2:59:58.999',
/* f20 TIMESTAMP,  */         20000303000000,
/* f21 TINYBLOB,  */          '3333',
/* f22 TINYINT,  */           3,
/* f23 TINYTEXT,  */          '3',
/* f24 YEAR,  */              3000,
/* f25 BINARY(255),  */       'three_33333',
/* f26 BIT(64),  */           b'011',
/* f27 CHAR(255),  */         'three',
/* f28 DECIMAL(30,7),  */     3.333,
/* f29 DOUBLE,  */            3.333333333333333333333333333,
/* f30 ENUM ('a','b','c')*/   'c',
/* f31 FLOAT,  */             3.0,
/* f32 NUMERIC(17,9),  */     3.3333,
/* f33 SET ('a','b','c'),*/   'c',
/*f34 VARBINARY(1025),*/      '3333 minus 3',
/*f35 VARCHAR(257),*/         'three times three'
       ),
(1, 1, 6, 'sixth',
/* f5  BIGINT,  */            NULL,
/* f6  BLOB,  */              '3333333333333333333333',
/* f7  DATE,  */              '2007-07-18',
/* f8  DATETIME,  */          "2007-07-18",
/* f9  FLOAT,  */             3.33333333,
/* f10 INT,  */               333333333,
/* f11 LONGBLOB,  */          '3333333333333333333',
/* f12 LONGTEXT,  */          '3333333333333333333',
/* f13 MEDIUMBLOB,  */        '3333333333333333333',
/* f14 MEDIUMINT,  */         33,
/* f15 MEDIUMTEXT,  */        3.3,
/* f16 REAL,  */              3.3,
/* f17 SMALLINT,  */          3,
/* f18 TEXT,  */              '33',
/* f19 TIME,  */              '2:59:58.999',
/* f20 TIMESTAMP,  */         20000303000000,
/* f21 TINYBLOB,  */          '3333',
/* f22 TINYINT,  */           3,
/* f23 TINYTEXT,  */          '3',
/* f24 YEAR,  */              3000,
/* f25 BINARY(255),  */       'three_33333',
/* f26 BIT(64),  */           b'011',
/* f27 CHAR(255),  */         'three',
/* f28 DECIMAL(30,7),  */     3.333,
/* f29 DOUBLE,  */            3.333333333333333333333333333,
/* f30 ENUM ('a','b','c')*/   'c',
/* f31 FLOAT,  */             3.0,
/* f32 NUMERIC(17,9),  */     3.3333,
/* f33 SET ('a','b','c'),*/   'c',
/*f34 VARBINARY(1025),*/      '3333 minus 3',
/*f35 VARCHAR(257),*/         NULL
);
Warnings:
Warning	1264	Out of range value for column 'f5' at row 1
Warning	1264	Out of range value for column 'f24' at row 1
Warning	1264	Out of range value for column 'f5' at row 2
Warning	1264	Out of range value for column 'f24' at row 2
Warning	1264	Out of range value for column 'f24' at row 3

** Sync slave with master ** 
** Do selects from tables **

select * from t1 order by f3;
f1	f2	f3	f4
2	2	2	second
3	3	3	next
5	5	5	second
6	6	6	next
8	8	8	second
9	9	9	next
11	11	11	second
12	12	12	next
14	14	14	second
15	15	15	next
17	17	17	second
18	18	18	next
20	20	20	second
21	21	21	next
23	23	23	second
24	24	24	next
26	26	26	second
27	27	27	next
29	29	29	second
30	30	30	next
31	31	31	second
32	32	32	second
33	33	33	second
34	34	34	second
35	35	35	second
36	36	36	second
37	37	37	second
38	38	38	second
39	39	39	second
40	40	40	second
41	41	41	second
42	42	42	second
43	43	43	second
44	44	44	second
45	45	45	second
46	46	46	second
47	47	47	second
48	48	48	second
49	49	49	second
50	50	50	second
select * from t2 order by f1;
f1	f2	f3	f4
1	1	1	first
2	2	2	second
3	3	3	third
select * from t3 order by f1;
f1	f2	f3	f4
1	1	1	first
select * from t4 order by f1;
f1	f2	f3	f4
1	1	1	first
select * from t31 order by f3;
f1	f2	f3	f4
1	1	1	first
1	1	2	second
1	1	3	third
1	1	4	fourth
1	1	5	fifth
1	1	6	sixth

** Do updates master **

update t31 set f5=555555555555555 where f3=6;
update t31 set f2=2 where f3=2;
update t31 set f1=NULL where f3=1;
update t31 set f3=NULL, f27=NULL, f35='f35 new value' where f3=3;
Warnings:
Warning	1048	Column 'f3' cannot be null

** Delete from Master **

delete from t1;
delete from t2;
delete from t3;
delete from t4;
delete from t31;
select * from t31;
f1	f2	f3	f4

** Check slave status **

include/check_slave_is_running.inc

****************************************
* columns in master at middle of table *
* Expect: Proper error message         *
****************************************

** Stop and Reset Slave **

STOP SLAVE;

** create table slave side **
CREATE TABLE t10 (a INT PRIMARY KEY, b BLOB, c CHAR(5)
) ENGINE='InnoDB';

** Connect to master and create table **

CREATE TABLE t10 (a INT KEY, b BLOB, f DOUBLE DEFAULT '233',
c CHAR(5), e INT DEFAULT '1')ENGINE='InnoDB';

*** Start Slave ***
include/rpl_reset.inc

*** Master Data Insert ***
set @b1 = 'b1b1b1b1';
set @b1 = concat(@b1,@b1);
INSERT INTO t10 () VALUES(1,@b1,DEFAULT,'Kyle',DEFAULT),
(2,@b1,DEFAULT,'JOE',DEFAULT),
(3,@b1,DEFAULT,'QA',DEFAULT);

********************************************
*** Expect slave to fail with Error 1677 ***
********************************************

include/wait_for_slave_sql_error_and_skip.inc [errno=1677]

*** Drop t10  ***
DROP TABLE t10;

*********************************************
* More columns in master at middle of table *
* Expect: Proper error message              *
*********************************************

*** Create t11 on slave  ***
STOP SLAVE;
CREATE TABLE t11 (a INT PRIMARY KEY, b BLOB, c VARCHAR(254)
) ENGINE='InnoDB';

*** Create t11 on Master ***
CREATE TABLE t11 (a INT KEY, b BLOB, f TEXT,
c CHAR(5) DEFAULT 'test', e INT DEFAULT '1')ENGINE='InnoDB';

*** Start Slave ***
include/rpl_reset.inc

*** Master Data Insert ***
set @b1 = 'b1b1b1b1';
set @b1 = concat(@b1,@b1);
INSERT INTO t11 () VALUES(1,@b1,'Testing is fun','Kyle',DEFAULT),
(2,@b1,'Testing is cool','JOE',DEFAULT),
(3,@b1,DEFAULT,'QA',DEFAULT);

********************************************
*** Expect slave to fail with Error 1677 ***
********************************************

include/wait_for_slave_sql_error_and_skip.inc [errno=1677]

*** Drop t11  ***
DROP TABLE t11;

*********************************************
* More columns in master at middle of table *
* Expect: This one should pass blob-text    *
*********************************************

*** Create t12 on slave  ***
STOP SLAVE;
CREATE TABLE t12 (a INT PRIMARY KEY, b BLOB, c BLOB
) ENGINE='InnoDB';

*** Create t12 on Master ***
CREATE TABLE t12 (a INT KEY, b BLOB, f TEXT,
c CHAR(5) DEFAULT 'test', e INT DEFAULT '1')ENGINE='InnoDB';

*** Start Slave ***
include/rpl_reset.inc

*** Master Data Insert ***
set @b1 = 'b1b1b1b1';
set @b1 = concat(@b1,@b1);
INSERT INTO t12 () VALUES(1,@b1,'Kyle',DEFAULT,DEFAULT),
(2,@b1,'JOE',DEFAULT,DEFAULT),
(3,@b1,'QA',DEFAULT,DEFAULT);

SELECT a,hex(b),f,c,e FROM t12 ORDER BY a;
a	hex(b)	f	c	e
1	62316231623162316231623162316231	Kyle	test	1
2	62316231623162316231623162316231	JOE	test	1
3	62316231623162316231623162316231	QA	test	1

*** Select on Slave ***
SELECT a,hex(b),c FROM t12 ORDER BY a;
a	hex(b)	c
1	62316231623162316231623162316231	Kyle
2	62316231623162316231623162316231	JOE
3	62316231623162316231623162316231	QA

*** Drop t12  ***
DROP TABLE t12;

****************************************************
* - Alter Master adding columns at middle of table *
*   Expect: columns added                          *
****************************************************


*** Create t14 on slave  ***
STOP SLAVE;
CREATE TABLE t14 (c1 INT PRIMARY KEY, c4 BLOB, c5 CHAR(5)
) ENGINE='InnoDB';

*** Create t14 on Master ***
CREATE TABLE t14 (c1 INT KEY, c4 BLOB, c5 CHAR(5),
c6 INT DEFAULT '1',
c7 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
)ENGINE='InnoDB';

*** Start Slave ***
include/rpl_reset.inc

*** Master Data Insert ***
ALTER TABLE t14 ADD COLUMN c2 DECIMAL(8,2) AFTER c1;
ALTER TABLE t14 ADD COLUMN c3 TEXT AFTER c2;

set @b1 = 'b1b1b1b1';
set @b1 = concat(@b1,@b1);
INSERT INTO t14 () VALUES(1,1.00,'Replication Testing Extra Col',@b1,'Kyle',DEFAULT,DEFAULT),
(2,2.00,'This Test Should work',@b1,'JOE',DEFAULT,DEFAULT),
(3,3.00,'If is does not, I will open a bug',@b1,'QA',DEFAULT,DEFAULT);

SELECT c1,c2,c3,hex(c4),c5,c6,c7 FROM t14 ORDER BY c1;
c1	c2	c3	hex(c4)	c5	c6	c7
1	1.00	Replication Testing Extra Col	62316231623162316231623162316231	Kyle	1	CURRENT_TIMESTAMP
2	2.00	This Test Should work	62316231623162316231623162316231	JOE	1	CURRENT_TIMESTAMP
3	3.00	If is does not, I will open a bug	62316231623162316231623162316231	QA	1	CURRENT_TIMESTAMP

*** Select on Slave ****
SELECT c1,c2,c3,hex(c4),c5 FROM t14 ORDER BY c1;
c1	c2	c3	hex(c4)	c5
1	1.00	Replication Testing Extra Col	62316231623162316231623162316231	Kyle
2	2.00	This Test Should work	62316231623162316231623162316231	JOE
3	3.00	If is does not, I will open a bug	62316231623162316231623162316231	QA

****************************************************
* - Alter Master Dropping columns from the middle. *
*   Expect: columns dropped                        *
****************************************************

*** connect to master and drop columns ***
ALTER TABLE t14 DROP COLUMN c2;
ALTER TABLE t14 DROP COLUMN c7;

*** Select from Master ***
SELECT c1,c3,hex(c4),c5,c6 FROM t14 ORDER BY c1;
c1	c3	hex(c4)	c5	c6
1	Replication Testing Extra Col	62316231623162316231623162316231	Kyle	1
2	This Test Should work	62316231623162316231623162316231	JOE	1
3	If is does not, I will open a bug	62316231623162316231623162316231	QA	1

************
* Bug30415 *
************
include/wait_for_slave_sql_error.inc [errno=1091]
STOP SLAVE;

*** Drop t14  ***
DROP TABLE t14;
DROP TABLE t14;
include/rpl_reset.inc

*************************************************
* - Alter Master adding columns at end of table *
*   Expect: Error 1054                          *
*************************************************

*** Create t15 on slave  ***
STOP SLAVE;
CREATE TABLE t15 (c1 INT PRIMARY KEY, c4 BLOB, c5 CHAR(5)
) ENGINE='InnoDB';

*** Create t15 on Master ***
CREATE TABLE t15 (c1 INT KEY, c4 BLOB, c5 CHAR(5),
c6 INT DEFAULT '1',
c7 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
)ENGINE='InnoDB';

*** Start Slave ***
include/rpl_reset.inc

*** Master Data Insert ***
ALTER TABLE t15 ADD COLUMN c2 DECIMAL(8,2) AFTER c7;
set @b1 = 'b1b1b1b1';
set @b1 = concat(@b1,@b1);
INSERT INTO t15 () VALUES(1,@b1,'Kyle',DEFAULT,DEFAULT,3.00),
(2,@b1,'JOE',DEFAULT,DEFAULT,3.00),
(3,@b1,'QA',DEFAULT,DEFAULT,3.00);
SELECT c1,hex(c4),c5,c6,c7,c2 FROM t15 ORDER BY c1;
c1	hex(c4)	c5	c6	c7	c2
1	62316231623162316231623162316231	Kyle	1	CURRENT_TIMESTAMP	3.00
2	62316231623162316231623162316231	JOE	1	CURRENT_TIMESTAMP	3.00
3	62316231623162316231623162316231	QA	1	CURRENT_TIMESTAMP	3.00

********************************************
*** Expect slave to fail with Error 1054 ***
********************************************

include/wait_for_slave_sql_error.inc [errno=1054]
STOP SLAVE;

*** Drop t15  ***
DROP TABLE t15;
DROP TABLE t15;
include/rpl_reset.inc

************************************************
* - Create index on Master column not on slave *
*   Expect:Warning                             *
************************************************

*** Create t16 on slave  ***
STOP SLAVE;
CREATE TABLE t16 (c1 INT PRIMARY KEY, c4 BLOB, c5 CHAR(5)
) ENGINE='InnoDB';

*** Create t16 on Master ***
CREATE TABLE t16 (c1 INT KEY, c4 BLOB, c5 CHAR(5),
c6 INT DEFAULT '1',
c7 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
)ENGINE='InnoDB';

*** Start Slave ***
include/rpl_reset.inc

*** Master Create Index and Data Insert ***
CREATE INDEX part_of_c6 ON t16 (c6);
set @b1 = 'b1b1b1b1';
set @b1 = concat(@b1,@b1);
INSERT INTO t16 () VALUES(1,@b1,'Kyle',DEFAULT,DEFAULT),
(2,@b1,'JOE',2,DEFAULT),
(3,@b1,'QA',3,DEFAULT);
SELECT c1,hex(c4),c5,c6,c7 FROM t16 ORDER BY c1;
c1	hex(c4)	c5	c6	c7
1	62316231623162316231623162316231	Kyle	1	CURRENT_TIMESTAMP
2	62316231623162316231623162316231	JOE	2	CURRENT_TIMESTAMP
3	62316231623162316231623162316231	QA	3	CURRENT_TIMESTAMP

*****************
*** BUG 30434 ***
*****************

include/wait_for_slave_sql_error.inc [errno=1072]
STOP SLAVE;

*** Drop t16  ***
DROP TABLE t16;
DROP TABLE t16;
include/rpl_reset.inc

*****************************************************
* - Delete rows using column on Master not on slave *
*   Expect: Rows Deleted                            *
*****************************************************

*** Create t17 on slave  ***
STOP SLAVE;
CREATE TABLE t17 (c1 INT PRIMARY KEY, c4 BLOB, c5 CHAR(5)
) ENGINE='InnoDB';

*** Create t17 on Master ***
CREATE TABLE t17 (c1 INT KEY, c4 BLOB, c5 CHAR(5),
c6 INT DEFAULT '1',
c7 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
)ENGINE='InnoDB';

*** Start Slave ***
include/rpl_reset.inc

*** Master Data Insert ***
set @b1 = 'b1b1b1b1';
set @b1 = concat(@b1,@b1);
INSERT INTO t17 () VALUES(1,@b1,'Kyle',DEFAULT,DEFAULT),
(2,@b1,'JOE',2,DEFAULT),
(3,@b1,'QA',3,DEFAULT);
SELECT c1,hex(c4),c5,c6,c7 FROM t17 ORDER BY c1;
c1	hex(c4)	c5	c6	c7
1	62316231623162316231623162316231	Kyle	1	CURRENT_TIMESTAMP
2	62316231623162316231623162316231	JOE	2	CURRENT_TIMESTAMP
3	62316231623162316231623162316231	QA	3	CURRENT_TIMESTAMP

** Select * from Slave **
SELECT c1,hex(c4),c5 FROM t17 ORDER BY c1;
c1	hex(c4)	c5
1	62316231623162316231623162316231	Kyle
2	62316231623162316231623162316231	JOE
3	62316231623162316231623162316231	QA

** Delete from master **
DELETE FROM t17 WHERE c6 = 3;
SELECT c1,hex(c4),c5,c6,c7 FROM t17 ORDER BY c1;
c1	hex(c4)	c5	c6	c7
1	62316231623162316231623162316231	Kyle	1	CURRENT_TIMESTAMP
2	62316231623162316231623162316231	JOE	2	CURRENT_TIMESTAMP

** Check slave **
SELECT c1,hex(c4),c5 FROM t17 ORDER BY c1;
c1	hex(c4)	c5
1	62316231623162316231623162316231	Kyle
2	62316231623162316231623162316231	JOE
DROP TABLE t17;


*****************************************************
* - Update row using column on Master not on slave *
*   Expect: Rows updated                           *
*****************************************************

** Bug30674 **

*** Create t18 on slave  ***

STOP SLAVE;
CREATE TABLE t18 (c1 INT PRIMARY KEY, c4 BLOB, c5 CHAR(5)
) ENGINE='InnoDB';

*** Create t18 on Master ***
CREATE TABLE t18 (c1 INT KEY, c4 BLOB, c5 CHAR(5),
c6 INT DEFAULT '1',
c7 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
)ENGINE='InnoDB';

*** Start Slave ***
include/rpl_reset.inc

*** Master Data Insert ***
set @b1 = 'b1b1b1b1';
set @b1 = concat(@b1,@b1);
INSERT INTO t18 () VALUES(1,@b1,'Kyle',DEFAULT,DEFAULT),
(2,@b1,'JOE',2,DEFAULT),
(3,@b1,'QA',3,DEFAULT);
SELECT c1,hex(c4),c5,c6,c7 FROM t18 ORDER BY c1;
c1	hex(c4)	c5	c6	c7
1	62316231623162316231623162316231	Kyle	1	CURRENT_TIMESTAMP
2	62316231623162316231623162316231	JOE	2	CURRENT_TIMESTAMP
3	62316231623162316231623162316231	QA	3	CURRENT_TIMESTAMP

** Select * from Slave **
SELECT c1,hex(c4),c5 FROM t18 ORDER BY c1;
c1	hex(c4)	c5
1	62316231623162316231623162316231	Kyle
2	62316231623162316231623162316231	JOE
3	62316231623162316231623162316231	QA

** update from master **
UPDATE t18 SET c5 = 'TEST' WHERE c6 = 3;
SELECT c1,hex(c4),c5,c6,c7 FROM t18 ORDER BY c1;
c1	hex(c4)	c5	c6	c7
1	62316231623162316231623162316231	Kyle	1	CURRENT_TIMESTAMP
2	62316231623162316231623162316231	JOE	2	CURRENT_TIMESTAMP
3	62316231623162316231623162316231	TEST	3	CURRENT_TIMESTAMP

** Check slave **
SELECT c1,hex(c4),c5 FROM t18 ORDER BY c1;
c1	hex(c4)	c5
1	62316231623162316231623162316231	Kyle
2	62316231623162316231623162316231	JOE
3	62316231623162316231623162316231	TEST
DROP TABLE t18;


*****************************************************
* - Insert UUID  column on Master not on slave *
*   Expect: Rows inserted                      *
*****************************************************

*** Create t5 on slave  ***
STOP SLAVE;
CREATE TABLE t5 (c1 INT PRIMARY KEY, c4 BLOB, c5 CHAR(5)
) ENGINE='InnoDB';

*** Create t5 on Master ***
CREATE TABLE t5 (c1 INT KEY, c4 BLOB, c5 CHAR(5),
c6 LONG, 
c7 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
)ENGINE='InnoDB';

*** Start Slave ***
include/rpl_reset.inc

*** Master Data Insert ***
set @b1 = 'b1b1b1b1';
INSERT INTO t5 () VALUES(1,@b1,'Kyle',UUID(),DEFAULT),
(2,@b1,'JOE',UUID(),DEFAULT),
(3,@b1,'QA',UUID(),DEFAULT);
SELECT c1,hex(c4),c5,c6,c7 FROM t5 ORDER BY c1;
c1	hex(c4)	c5	c6	c7
1	6231623162316231	Kyle	UUID	TIME
2	6231623162316231	JOE	UUID	TIME
3	6231623162316231	QA	UUID	TIME

** Select * from Slave **
SELECT c1,hex(c4),c5 FROM t5 ORDER BY c1;
c1	hex(c4)	c5
1	6231623162316231	Kyle
2	6231623162316231	JOE
3	6231623162316231	QA
DROP TABLE t5;

include/rpl_reset.inc
SET NAMES utf8;
SET SQL_LOG_BIN=0;
CREATE TABLE t1 (c1 INT NOT NULL, c2 CHAR(255) CHARACTER SET UTF8 NOT NULL) ENGINE='InnoDB';
SET SQL_LOG_BIN=1;
CREATE TABLE t1 (c1 INT) ENGINE='InnoDB';
INSERT INTO t1 VALUES ();
SET @text= REPEAT(_utf8'ç', 255);
INSERT INTO t1 VALUES (1, @text);
SELECT * FROM t1 ORDER BY c1;
c1	c2
0	
1	ççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççççç
SELECT * FROM t1 ORDER BY c1;
c1
0
1
DROP TABLE t1;
include/rpl_end.inc

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