1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

After merge fixes

This commit is contained in:
unknown
2006-09-21 13:38:01 +02:00
parent 7ea9c4e34a
commit 9de027bdd5
2 changed files with 36 additions and 30 deletions

View File

@ -91,10 +91,10 @@ CREATE TABLE t1 ( a INT UNIQUE );
SET FOREIGN_KEY_CHECKS=0;
INSERT INTO t1 VALUES (1),(1);
ERROR 23000: Duplicate entry '1' for key 1
drop table t1;
#
# Bug#14553: NULL in WHERE resets LAST_INSERT_ID
#
drop table t1;
create table t1(a int auto_increment, key(a));
create table t2(a int);
insert into t1 (a) values (null);
@ -234,3 +234,6 @@ n b
2 100
3 350
drop table t1;
# End of 5.0 tests