1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Post-merge fix.

This commit is contained in:
igor@olga.mysql.com
2007-02-13 13:15:23 -08:00
parent fb9e0ad3be
commit 273d016aad
10 changed files with 31 additions and 46 deletions

View File

@@ -717,17 +717,3 @@ select * from t1;
f1 f2
1 2
drop table t1;
create table t1(f1 int primary key auto_increment, f2 int unique);
insert into t1(f2) values(1);
select @@identity;
@@identity
1
insert ignore t1(f2) values(1);
select @@identity;
@@identity
0
insert ignore t1(f2) select 1;
select @@identity;
@@identity
0
drop table t1;