mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 07:35:32 +02:00
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
This commit is contained in:
parent
41f9594d6b
commit
90ce7aea5f
1 changed files with 7 additions and 0 deletions
|
|
@ -78,6 +78,13 @@ a
|
|||
1
|
||||
2
|
||||
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 t2 (a int not null);
|
||||
insert into t1 values (1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue