📄 rpl_row_inexist_tbl.test
字号:
# Test to see what slave says when master is updating a table it does# not have--source include/have_binlog_format_row.incsource include/master-slave.inc;connection master;create table t1 (a int not null primary key);sync_slave_with_master;drop table t1;connection master;insert into t1 values (1);insert into t1 values (2);connection slave;# slave should have stopped because can't find tablewait_for_slave_to_stop;# see if we have a good error message:--replace_result $MASTER_MYPORT MASTER_MYPORT--replace_column 1 # 7 # 8 # 9 # 23 # 33 #--vertical_resultsshow slave status;# cleanupconnection master;drop table t1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -