diff options
Diffstat (limited to 'mysql-test/t/exampledb.test')
-rw-r--r-- | mysql-test/t/exampledb.test | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/t/exampledb.test b/mysql-test/t/exampledb.test new file mode 100644 index 00000000000..c60a9d7f930 --- /dev/null +++ b/mysql-test/t/exampledb.test @@ -0,0 +1,16 @@ +# +# Simple test for the example storage engine +# Taken fromm the select test +# +-- source include/have_exampledb.inc + +--disable_warnings +drop table if exists t1; +--enable_warnings + +CREATE TABLE t1 ( + Period smallint(4) unsigned zerofill DEFAULT '0000' NOT NULL, + Varor_period smallint(4) unsigned DEFAULT '0' NOT NULL +) ENGINE=example; + +drop table t1; |