diff options
author | unknown <pekka@mysql.com> | 2006-02-03 14:35:29 +0100 |
---|---|---|
committer | unknown <pekka@mysql.com> | 2006-02-03 14:35:29 +0100 |
commit | 44d113b14a001e26b792afe96bdb9e010c5d2bfb (patch) | |
tree | 5d45c6866c3ba4826d28fe8a1bd560786862efba /mysql-test/r/ndb_blob.result | |
parent | f4266bc468784b1a804383e13f5551e8fe663ffd (diff) | |
download | mariadb-git-44d113b14a001e26b792afe96bdb9e010c5d2bfb.tar.gz |
ndb - bugfix: tinyblob + replace => mysqld crash (no bug#)
mysql-test/r/ndb_blob.result:
do not delete unknown parts of tinyblob
mysql-test/t/ndb_blob.test:
do not delete unknown parts of tinyblob
ndb/src/ndbapi/NdbBlob.cpp:
do not delete unknown parts of tinyblob
Diffstat (limited to 'mysql-test/r/ndb_blob.result')
-rw-r--r-- | mysql-test/r/ndb_blob.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/ndb_blob.result b/mysql-test/r/ndb_blob.result index f806cf08ea9..b1269564558 100644 --- a/mysql-test/r/ndb_blob.result +++ b/mysql-test/r/ndb_blob.result @@ -428,6 +428,13 @@ delete from t1; select * from t1; a b commit; +replace t1 set a=2, b='y'; +select * from t1; +a b +2 y +delete from t1; +select * from t1; +a b drop table t1; set autocommit=0; create table t1 ( |