summaryrefslogtreecommitdiff
path: root/mysql-test/t/create.test
diff options
context:
space:
mode:
authorsergefp@mysql.com <>2005-10-29 02:36:57 +0400
committersergefp@mysql.com <>2005-10-29 02:36:57 +0400
commit09a4d0c7a76c7981c02863ae7500f36c4ed6f621 (patch)
tree45ae3ddd001a6f4023a0be5975954ff46ec00ea3 /mysql-test/t/create.test
parent3e76aa38fac9fc5560fe2321f097f00b9f7d9a6f (diff)
parentf220d8747609a5814e85267ed62bf26132b6f322 (diff)
downloadmariadb-git-09a4d0c7a76c7981c02863ae7500f36c4ed6f621.tar.gz
4.1->5.0 merge
Diffstat (limited to 'mysql-test/t/create.test')
-rw-r--r--mysql-test/t/create.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test
index b72dc49e89a..f461a092de1 100644
--- a/mysql-test/t/create.test
+++ b/mysql-test/t/create.test
@@ -545,4 +545,12 @@ create table t1 (a int);
create table if not exists t1 (a int);
drop table t1;
+# BUG#14139
+create table t1 (
+ a varchar(112) charset utf8 collate utf8_bin not null,
+ primary key (a)
+) select 'test' as a ;
+show create table t1;
+drop table t1;
+
# End of 4.1 tests