summaryrefslogtreecommitdiff
path: root/mysql-test/t/create.test
diff options
context:
space:
mode:
authorandrey@lmy004. <>2005-09-20 06:55:23 +0300
committerandrey@lmy004. <>2005-09-20 06:55:23 +0300
commit72549b13c2fb3db65e0a917b96c4657c68636fc1 (patch)
treee284253ad3b1b66143ab63fb995a31468501cd16 /mysql-test/t/create.test
parent9fe540fa13e5af8694038b56a9f5317d41da3171 (diff)
parentf75ac7fb82d426b7392781b6292dc9780aae3b8d (diff)
downloadmariadb-git-72549b13c2fb3db65e0a917b96c4657c68636fc1.tar.gz
Merge ahristov@bk-internal.mysql.com:/home/bk/mysql-4.1
into lmy004.:/work/mysql-4.1-bug12913
Diffstat (limited to 'mysql-test/t/create.test')
-rw-r--r--mysql-test/t/create.test7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test
index 73184853d1a..f81e934765d 100644
--- a/mysql-test/t/create.test
+++ b/mysql-test/t/create.test
@@ -502,6 +502,13 @@ DESC t2;
DROP TABLE t1,t2;
#
+# Bug#12913 Simple SQL can crash server or connection
+#
+CREATE TABLE t12913 (f1 ENUM ('a','b')) AS SELECT 'a' AS f1;
+SELECT * FROM t12913;
+DROP TABLE t12913;
+
+#
# Bug#11028: Crash on create table like
#
create database mysqltest;