1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fixed bug in error handling of CREATE ... SELECT

More tests cases
After merge fixes
This commit is contained in:
monty@narttu.mysql.fi
2003-10-08 18:53:31 +03:00
parent 246febee42
commit 9e57c12b5a
15 changed files with 121 additions and 55 deletions

View File

@ -74,7 +74,12 @@ insert into t1 select * from t2;
ERROR 23000: Duplicate entry '2' for key 1
show binlog events;
Log_name Pos Event_type Server_id Orig_log_pos Info
master-bin.000001 4 Start 1 4 Server ver: VERSION, Binlog ver: 3
master-bin.000001 79 Query 1 79 use `test`; insert into t1 select * from t2
select * from t1;
a
1
2
drop table t1, t2;
create table t1 (a int not null);
create table t2 (a int not null);