Commit 980664bf authored by Sergei Golubchik's avatar Sergei Golubchik

mysql-test: sys_vars stub for a new xtradb config variable; tc_log_mmap test;

parent c499fa1e
include/master-slave.inc
[connection master]
create table t1 (a int) engine=InnoDB;
create table t2 (a int) engine=pbxt;
begin;
insert into t1 values (1);
insert into t2 values (2);
commit;
select * from t1;
a
1
select * from t2;
a
2
drop table t1, t2;
include/rpl_end.inc
--source include/have_innodb.inc
--source include/master-slave.inc
create table t1 (a int) engine=InnoDB;
create table t2 (a int) engine=pbxt;
begin;
insert into t1 values (1);
insert into t2 values (2);
commit;
sync_slave_with_master;
connection slave;
select * from t1;
select * from t2;
connection master;
drop table t1, t2;
--source include/rpl_end.inc
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment