diff options
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 a1152045dd9..ebcad5f4af4 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -2019,3 +2019,10 @@ connection default; select * from t1; unlock tables; drop table t1,t2; + +# +# MDEV-4880 Attempt to create a table without columns produces ER_ILLEGAL_HA instead of ER_TABLE_MUST_HAVE_COLUMNS +# +--error ER_TABLE_MUST_HAVE_COLUMNS +create table t1; + |