mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
57 lines
1.3 KiB
Text
57 lines
1.3 KiB
Text
|
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;
|
||
|
CREATE TABLE t1 (data LONGBLOB) ENGINE=MYISAM;
|
||
|
CREATE TABLE t2 (data LONGBLOB) ENGINE=MYISAM;
|
||
|
INSERT INTO t1 (data) VALUES (repeat('a',1024*1024));
|
||
|
INSERT INTO t1 SELECT * FROM t1;
|
||
|
INSERT INTO t1 SELECT * FROM t1;
|
||
|
INSERT INTO t1 SELECT * FROM t1;
|
||
|
INSERT INTO t1 SELECT * FROM t1;
|
||
|
INSERT INTO t1 SELECT * FROM t1;
|
||
|
INSERT INTO t1 SELECT * FROM t1;
|
||
|
INSERT INTO t1 SELECT * FROM t1;
|
||
|
INSERT INTO t1 SELECT * FROM t1;
|
||
|
INSERT INTO t2 SELECT * FROM t1;
|
||
|
KILL QUERY 2;
|
||
|
SELECT COUNT(*) FROM t2;
|
||
|
COUNT(*)
|
||
|
0
|
||
|
SHOW SLAVE STATUS;
|
||
|
Slave_IO_State #
|
||
|
Master_Host 127.0.0.1
|
||
|
Master_User root
|
||
|
Master_Port MASTER_PORT
|
||
|
Connect_Retry 1
|
||
|
Master_Log_File master-bin.000001
|
||
|
Read_Master_Log_Pos #
|
||
|
Relay_Log_File #
|
||
|
Relay_Log_Pos #
|
||
|
Relay_Master_Log_File master-bin.000001
|
||
|
Slave_IO_Running Yes
|
||
|
Slave_SQL_Running No
|
||
|
Replicate_Do_DB
|
||
|
Replicate_Ignore_DB
|
||
|
Replicate_Do_Table
|
||
|
Replicate_Ignore_Table
|
||
|
Replicate_Wild_Do_Table
|
||
|
Replicate_Wild_Ignore_Table
|
||
|
Last_Errno 1317
|
||
|
Last_Error #
|
||
|
Skip_Counter 0
|
||
|
Exec_Master_Log_Pos #
|
||
|
Relay_Log_Space #
|
||
|
Until_Condition None
|
||
|
Until_Log_File
|
||
|
Until_Log_Pos 0
|
||
|
Master_SSL_Allowed No
|
||
|
Master_SSL_CA_File
|
||
|
Master_SSL_CA_Path
|
||
|
Master_SSL_Cert
|
||
|
Master_SSL_Cipher
|
||
|
Master_SSL_Key
|
||
|
Seconds_Behind_Master #
|