diff options
author | unknown <msvensson@shellback.(none)> | 2006-09-15 11:03:55 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2006-09-15 11:03:55 +0200 |
commit | 39d888ccd14930d7f06dfeff72f074fb23bdda42 (patch) | |
tree | e2a64bdffc32b5ca0d401d5ad4bf4e2126ef1a2a /mysql-test/t/mysql.test | |
parent | 756baf00231539daecf6a5ddfd93d3ff6cdafc18 (diff) | |
parent | 38d2f5951291d4c3f313edfc9482cc7ef4558c41 (diff) | |
download | mariadb-git-39d888ccd14930d7f06dfeff72f074fb23bdda42.tar.gz |
Merge bk-internal:/home/bk/mysql-5.0-maint
into shellback.(none):/home/msvensson/mysql/mysql-5.0-maint
Diffstat (limited to 'mysql-test/t/mysql.test')
-rw-r--r-- | mysql-test/t/mysql.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/mysql.test b/mysql-test/t/mysql.test index cf4e6f4047c..9e3eabf474b 100644 --- a/mysql-test/t/mysql.test +++ b/mysql-test/t/mysql.test @@ -70,14 +70,21 @@ drop table t1; # # "DESCRIBE" commands may return strange NULLness flags. # +--exec $MYSQL --default-character-set utf8 test -e "create table t1 (i int, j int not null, k int); insert into t1 values (null, 1, null); select * from t1; describe t1; drop table t1;" --exec $MYSQL -t --default-character-set utf8 test -e "create table t1 (i int, j int not null, k int); insert into t1 values (null, 1, null); select * from t1; describe t1; drop table t1;" # # Bug#19564: mysql displays NULL instead of space # +--exec $MYSQL test -e "create table b19564 (i int, s1 char(1)); insert into b19564 values (1, 'x'); insert into b19564 values (2, NULL); insert into b19564 values (3, ' '); select * from b19564 order by i; drop table b19564;" --exec $MYSQL -t test -e "create table b19564 (i int, s1 char(1)); insert into b19564 values (1, 'x'); insert into b19564 values (2, NULL); insert into b19564 values (3, ' '); select * from b19564 order by i; drop table b19564;" # +# Bug#21618: NULL shown as empty string in client +# +--exec $MYSQL test -e "select unhex('zz');" +--exec $MYSQL -t test -e "select unhex('zz');" + # Bug#19265 describe command does not work from mysql prompt # |