summaryrefslogtreecommitdiff
path: root/mysql-test/r/create.result
diff options
context:
space:
mode:
authorJan Lindström <jan.lindstrom@mariadb.com>2015-12-07 09:34:41 +0200
committerJan Lindström <jan.lindstrom@mariadb.com>2015-12-07 09:34:41 +0200
commit0df22a539e046a9090a99f10260cf6d80f0c4e26 (patch)
tree45f796b6b2b8d2f1da074ce430d5df422eabd48a /mysql-test/r/create.result
parentd85168e40d12de12c119b98ea92c35f3c2fe1f3f (diff)
downloadmariadb-git-0df22a539e046a9090a99f10260cf6d80f0c4e26.tar.gz
MDEV-7050: MySQL#74603 - Assertion `comma_length > 0' failed in mysql_prepare_create_table
Incorrect array lenght for comma buffer.
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r--mysql-test/r/create.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result
index 8dd3cc8f643..327b53ce6cd 100644
--- a/mysql-test/r/create.result
+++ b/mysql-test/r/create.result
@@ -2477,3 +2477,9 @@ t1 CREATE TABLE `t1` (
`c` char(32) AS (convert(cast(n as char), char)) PERSISTENT
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
+set @@session.collation_server=filename;
+create table t1(a enum('',''));
+Warnings:
+Note 1291 Column 'a' has duplicated value '' in ENUM
+drop table t1;
+set @@session.collation_server=default;