rpl000002.test

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· TEST 代码 · 共 42 行

TEST
42
字号
source include/master-slave.inc;# Test replication of auto_incrementcreate table t1 (n int auto_increment primary key);set insert_id = 2000;insert into t1 values (NULL),(NULL),(NULL);sync_slave_with_master;select * from t1;connection master;--replace_result $SLAVE_MYPORT 9999show slave hosts;drop table t1;sync_slave_with_master;stop slave;connection master;# Test replication of timestampcreate table t2(id int auto_increment primary key, created datetime);set timestamp=12345;insert into t2 set created=now();select * from t2;# Test replication of CREATE .. LIKE (Bug #2557)create table t3 like t2;create temporary table t4 like t2;create table t5 select * from t4;save_master_pos;connection slave;start slave;sync_with_master;select * from t2;show create table t3;show create table t5;connection master;drop table t2,t3,t5;sync_slave_with_master;# End of 4.1 tests

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?