summaryrefslogtreecommitdiff
path: root/mysql-test/main/long_unique_bugs_replication.result
blob: af583d00ceafa37f058263093022a8473627bd7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
include/master-slave.inc
[connection master]
create table t1 (i1 int, a1 text, unique key i1 (a1)) engine=myisam;
insert into t1 values (1,1);
insert into t1 values (2,2);
update t1 set a1 = 'd' limit 1;
update t1 set a1 = 'd2' where i1= 2;
connection slave;
connection slave;
connection master;
drop table t1;
include/rpl_end.inc