📄 rpl_skip_error.test
字号:
source include/master-slave.inc;create table t1 (n int not null primary key);save_master_pos;connection slave;sync_with_master;insert into t1 values (1);connection master;insert into t1 values (1);insert into t1 values (2),(3);save_master_pos;connection slave;sync_with_master;select * from t1;connection master;drop table t1;sync_with_master;# End of 4.1 tests## #28839 Errors in strict mode silently stop SQL thread if --slave-skip-errors exists#create table t1(a int primary key);insert into t1 values (1),(2);delete from t1 where @@server_id=1;set sql_mode=strict_trans_tables;select @@server_id;insert into t1 values (1),(2),(3);sync_slave_with_master;connection slave;select @@server_id;select * from t1;--replace_column 1 # 8 # 9 # 23 # 33 #--replace_result $MASTER_MYPORT MASTER_PORTshow slave status;connection master;drop table t1;sync_with_master;# End of 5.0 tests
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -