mariadb/mysql-test/suite/binlog_encryption/rpl_sporadic_master.result
Elena Stepanova 611f91605a MDEV-9038 Binlog encryption tests
- created binlog_encryption test suite and added it to the default list
- moved some tests from rpl, binlog and multisource suites to extra
  so that they could be re-used in different suites
- made minor changes in include files
2016-12-05 20:19:01 +02:00

23 lines
484 B
Text

include/master-slave.inc
[connection master]
create table t2(n int);
create table t1(n int not null auto_increment primary key);
insert into t1 values (NULL),(NULL);
truncate table t1;
insert into t1 values (4),(NULL);
include/stop_slave.inc
include/start_slave.inc
insert into t1 values (NULL),(NULL);
flush logs;
truncate table t1;
insert into t1 values (10),(NULL),(NULL),(NULL),(NULL),(NULL);
select * from t1 ORDER BY n;
n
10
11
12
13
14
15
drop table t1,t2;
include/rpl_end.inc