summaryrefslogtreecommitdiff
path: root/mysql-test/r/ndb_blob.result
diff options
context:
space:
mode:
authorunknown <pekka@mysql.com>2004-09-02 12:42:03 +0200
committerunknown <pekka@mysql.com>2004-09-02 12:42:03 +0200
commitb186ef5a6208816f9d7b4d495dca03be94f92efb (patch)
tree963611506e263d0d207fd8af255f8a862970bf49 /mysql-test/r/ndb_blob.result
parent9ed92fea50cd8e6688a4370905050dc3cadfb771 (diff)
downloadmariadb-git-b186ef5a6208816f9d7b4d495dca03be94f92efb.tar.gz
ha_ndbcluster.cc, ndb_blob.test, ndb_blob.result:
bug-5013 fix mysql-test/r/ndb_blob.result: bug-5013 fix mysql-test/t/ndb_blob.test: bug-5013 fix sql/ha_ndbcluster.cc: bug-5013 fix
Diffstat (limited to 'mysql-test/r/ndb_blob.result')
-rw-r--r--mysql-test/r/ndb_blob.result23
1 files changed, 20 insertions, 3 deletions
diff --git a/mysql-test/r/ndb_blob.result b/mysql-test/r/ndb_blob.result
index d0148d214dd..a9731f97d6b 100644
--- a/mysql-test/r/ndb_blob.result
+++ b/mysql-test/r/ndb_blob.result
@@ -1,5 +1,25 @@
drop table if exists t1;
drop database if exists test2;
+create table t1 (
+a int not null primary key,
+b tinytext
+) engine=ndbcluster;
+insert into t1 values(1, 'x');
+update t1 set b = 'y';
+select * from t1;
+a b
+1 y
+delete from t1;
+drop table t1;
+create table t1 (
+a int not null primary key,
+b text not null
+) engine=ndbcluster;
+insert into t1 values(1, '');
+select * from t1;
+a b
+1
+drop table t1;
set autocommit=0;
create table t1 (
a int not null primary key,
@@ -73,9 +93,6 @@ a length(b) substr(b,1+4*900,2) length(d) substr(d,1+6*900,3)
2 4512 b1 6000 dd1
update t1 set d=null where a=1;
commit;
-select a from t1 where d is null;
-a
-1
delete from t1 where a=1;
delete from t1 where a=2;
commit;