rpl_insert_delayed.result
来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· RESULT 代码 · 共 55 行
RESULT
55 行
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 (id INT primary key auto_increment, name VARCHAR(64));truncate table t1;insert delayed into t1 values(10, "my name");insert delayed into t1 values(10, "is Bond"), (20, "James Bond");ERROR 23000: Duplicate entry '10' for key 1flush table t1;select * from t1;id name10 my nameselect * from t1;id name10 my namedelete from t1 where id!=10;insert delayed into t1 values(20, "is Bond"), (10, "James Bond");ERROR 23000: Duplicate entry '10' for key 1flush table t1;select * from t1;id name10 my name20 is Bondselect * from t1;id name10 my name20 is Bonddrop table t1;CREATE TABLE t1(a int, UNIQUE(a));INSERT DELAYED IGNORE INTO t1 VALUES(1);INSERT DELAYED IGNORE INTO t1 VALUES(1);flush table t1;show binlog events limit 11,100;Log_name Pos Event_type Server_id End_log_pos Infox x x x x use `test`; INSERT DELAYED IGNORE INTO t1 VALUES(1)x x x x x use `test`; INSERT DELAYED IGNORE INTO t1 VALUES(1)x x x x x use `test`; flush table t1select * from t1;a1On slaveshow binlog events limit 12,100;Log_name Pos Event_type Server_id End_log_pos Infox x x x x use `test`; INSERT DELAYED IGNORE INTO t1 VALUES(1)x x x x x use `test`; INSERT DELAYED IGNORE INTO t1 VALUES(1)x x x x x use `test`; flush table t1select * from t1;a1drop table t1;End of 5.0 tests
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?