summaryrefslogtreecommitdiff
path: root/storage/pbxt/mysql-test/main/r/rpl_mmap.result
blob: b1f5f15d01258b8ff3d1e37b475752a03ad8e3c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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