2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
8
File Position Binlog_Do_DB Binlog_Ignore_DB
9
master-bin.000001 # <Binlog_Do_DB> <Binlog_Ignore_DB>
11
change master to master_log_pos=75;
16
Master_Port MASTER_PORT
18
Master_Log_File master-bin.000001
22
Relay_Master_Log_File master-bin.000001
28
Replicate_Ignore_Table #
29
Replicate_Wild_Do_Table
30
Replicate_Wild_Ignore_Table
45
Seconds_Behind_Master #
46
Master_SSL_Verify_Server_Cert No
57
Master_Port MASTER_PORT
59
Master_Log_File master-bin.000001
60
Read_Master_Log_Pos 75
63
Relay_Master_Log_File master-bin.000001
69
Replicate_Ignore_Table #
70
Replicate_Wild_Do_Table
71
Replicate_Wild_Ignore_Table
75
Exec_Master_Log_Pos 75
86
Seconds_Behind_Master #
87
Master_SSL_Verify_Server_Cert No
93
File Position Binlog_Do_DB Binlog_Ignore_DB
94
master-bin.000001 # <Binlog_Do_DB> <Binlog_Ignore_DB>
95
create table if not exists t1 (n int);
96
drop table if exists t1;
97
create table t1 (n int);
98
insert into t1 values (1),(2),(3);
99
change master to master_log_pos=4;
101
select * from t1 ORDER BY n;