mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
13a61982a9
into mysql.com:/home/bk/w3023-mysql-5.1-new
27 lines
791 B
Text
27 lines
791 B
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(a int not null primary key) engine=myisam;
|
|
insert delayed into t1 values (1),(2),(3);
|
|
flush tables;
|
|
SELECT * FROM t1 ORDER BY a;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
show binlog events;
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
|
master-bin.000001 4 Format_desc 1 102 Server ver: VERSION, Binlog ver: 4
|
|
master-bin.000001 102 Query 1 222 use `test`; create table t1(a int not null primary key) engine=myisam
|
|
master-bin.000001 222 Table_map 1 261 table_id: # (test.t1)
|
|
master-bin.000001 261 Write_rows 1 305 table_id: # flags: STMT_END_F
|
|
master-bin.000001 305 Query 1 380 use `test`; flush tables
|
|
SELECT * FROM t1 ORDER BY a;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
drop table t1;
|