mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
611f91605a
- 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
23 lines
484 B
Text
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
|