diff options
author | ram@mysql.r18.ru <> | 2003-07-11 14:17:18 +0500 |
---|---|---|
committer | ram@mysql.r18.ru <> | 2003-07-11 14:17:18 +0500 |
commit | 4ca9718375f3bc69135009fa66a75af3c33e81e4 (patch) | |
tree | 48a18693fe6dbf9c774bc24b096baa0fdfc5ea18 /mysql-test/t/create.test | |
parent | df0f59fcbd5e7641de75c50591cd68f37735f922 (diff) | |
download | mariadb-git-4ca9718375f3bc69135009fa66a75af3c33e81e4.tar.gz |
Fix for the bug #801: create table t1 select x'41'; doesn't work
Diffstat (limited to 'mysql-test/t/create.test')
-rw-r--r-- | mysql-test/t/create.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test index 86c3f6be0f5..d46807f1dca 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -127,3 +127,10 @@ insert into t1 values ("a", 1), ("b", 2); !$1048 insert into t1 values (NULL, 3); !$1048 insert into t1 values (NULL, NULL); drop table t1; + +# +# Bug # 801 +# + +create table t1 select x'4132'; +drop table t1; |