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
13 lines
217 B
Text
13 lines
217 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
stop slave;
|
|
create table t1 (a int) engine=innodb;
|
|
reset slave;
|
|
start slave;
|
|
stop slave;
|
|
start slave;
|
|
select max(a) from t1;
|
|
max(a)
|
|
8000
|
|
drop table t1;
|
|
include/rpl_end.inc
|