diff options
Diffstat (limited to 'mysql-test/t/parser.test')
-rw-r--r-- | mysql-test/t/parser.test | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/t/parser.test b/mysql-test/t/parser.test index a29a2f14d25..98eaa7a7774 100644 --- a/mysql-test/t/parser.test +++ b/mysql-test/t/parser.test @@ -1337,3 +1337,15 @@ create function fs() returns serial return 1; create table t1 ( id serial ); show create table t1; drop table t1; + +--echo # +--echo # MDEV-10343 Providing compatibility for basic SQL data types +--echo # +CREATE TABLE clob (clob int); +DROP TABLE clob; + +CREATE TABLE raw (raw int); +DROP TABLE raw; + +CREATE TABLE varchar2 (varchar2 int); +DROP TABLE varchar2; |