Commit 90ce7aea authored by unknown's avatar unknown

Fix results file for insert_select test with embedded server. (Bug #7167)


mysql-test/r/insert_select.result.es:
  add output to embedded server results
parent 41f9594d
...@@ -78,6 +78,13 @@ a ...@@ -78,6 +78,13 @@ a
1 1
2 2
drop table t1, t2; drop table t1, t2;
create table t1(a int);
insert into t1 values(1),(1);
reset master;
create table t2(unique(a)) select a from t1;
ERROR 23000: Duplicate entry '1' for key 1
show binlog events;
drop table t1;
create table t1 (a int not null); create table t1 (a int not null);
create table t2 (a int not null); create table t2 (a int not null);
insert into t1 values (1); insert into t1 values (1);
......
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