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

Fix crash in 'INSERT DELAYED' statement that failed due to a

conflict in a unique key. (Bug #12226)
This commit is contained in:
jimw@mysql.com
2005-08-01 17:00:03 -07:00
parent ea7df08c93
commit 4cf8696eae
3 changed files with 19 additions and 1 deletions

View File

@@ -32,3 +32,10 @@ a b
3 d
4 e
drop table t1;
create table t1 (a int not null primary key);
insert into t1 values (1);
insert delayed into t1 values (1);
select * from t1;
a
1
drop table t1;