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

Merge clam.ndb.mysql.com:/export/space/pekka/ndb/version/my50-ndb

into  clam.ndb.mysql.com:/export/space/pekka/ndb/version/my50-bug24028
This commit is contained in:
pekka@clam.ndb.mysql.com/clam.(none)
2007-03-26 12:50:40 +02:00
4 changed files with 46 additions and 17 deletions

View File

@ -76,6 +76,8 @@ commit;
select a from t1 where d is null;
a
1
delete from t1 where a=45567;
commit;
delete from t1 where a=1;
delete from t1 where a=2;
commit;

View File

@ -96,6 +96,11 @@ update t1 set d=null where a=1;
commit;
select a from t1 where d is null;
# bug#24028 - does not occur on MySQL level
# bug#17986 - not seen by us anymore but could show as warning here
delete from t1 where a=45567;
commit;
# pk delete
delete from t1 where a=1;
delete from t1 where a=2;