diff options
author | unknown <pekka@clam.ndb.mysql.com/clam.(none)> | 2007-03-21 09:13:05 +0100 |
---|---|---|
committer | unknown <pekka@clam.ndb.mysql.com/clam.(none)> | 2007-03-21 09:13:05 +0100 |
commit | f275b8e9f5e231dbacc2a152923864471b4de1c0 (patch) | |
tree | 1a76711e72527d59ff12f13bccd6b484b4b7adbf /mysql-test/t/ndb_blob.test | |
parent | 4384879603faa6fafaf1ca5ce952c666968c0f6e (diff) | |
download | mariadb-git-f275b8e9f5e231dbacc2a152923864471b4de1c0.tar.gz |
ndb - bug#24028 in 5.0
proper fix exists only in version >= 5.1
mysql-test/r/ndb_blob.result:
bug#24028 in 5.0 only
mysql-test/t/ndb_blob.test:
bug#24028 in 5.0 only
ndb/src/ndbapi/NdbBlob.cpp:
bug#24028 in 5.0 only
ndb/test/ndbapi/testBlobs.cpp:
bug#24028 in 5.0 only
Diffstat (limited to 'mysql-test/t/ndb_blob.test')
-rw-r--r-- | mysql-test/t/ndb_blob.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_blob.test b/mysql-test/t/ndb_blob.test index d6e0edc89f0..32699017c03 100644 --- a/mysql-test/t/ndb_blob.test +++ b/mysql-test/t/ndb_blob.test @@ -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; |