summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_insert_select.result
blob: d98ae2538fa1b44e69e7043ed1702dd6fefafb21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include/master-slave.inc
[connection master]
create table t1 (n int not null primary key);
insert into t1 values (1);
create table t2 (n int);
insert into t2 values (1);
insert ignore into t1 select * from t2;
insert into t1 values (2);
select * from t1;
n
1
2
drop table t1,t2;
include/rpl_end.inc