diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-20 17:22:58 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-20 17:22:58 +0000 |
commit | 44db341fdb241ea954ce417f995e3b11c032d9b0 (patch) | |
tree | ad22cf6b9c6918aa5a222e126d9106b6c08f8496 /mysql-test/t/ndb_basic.test | |
parent | b76fb15ce6e71ab001f5fe25bee34e411ee9a35c (diff) | |
download | mariadb-git-44db341fdb241ea954ce417f995e3b11c032d9b0.tar.gz |
fix so that ndb handler can cope with char(0), mapped to char(1) for now
Diffstat (limited to 'mysql-test/t/ndb_basic.test')
-rw-r--r-- | mysql-test/t/ndb_basic.test | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_basic.test b/mysql-test/t/ndb_basic.test index 5f32a8016bf..e79815bbeb1 100644 --- a/mysql-test/t/ndb_basic.test +++ b/mysql-test/t/ndb_basic.test @@ -358,3 +358,16 @@ select b,test.t1.attr1 from test.t1, t2 where test.t1.pk1 < a; drop table test.t1, t2; drop database mysqltest; +# +# test support of char(0) +# + +use test; +create table t1 (a int primary key, b char(0)); +insert into t1 values (1,""); +insert into t1 values (2,NULL); +select * from t1 order by a; +select * from t1 order by b; +select * from t1 where b IS NULL; +select * from t1 where b IS NOT NULL; +drop table t1; |