1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Adding test cases for the example storage engine (so that you can test to see if it was built correctly).

This commit is contained in:
unknown
2004-08-13 17:14:36 -07:00
parent 2d8f4a61bf
commit 24e03b49a2
4 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,6 @@
drop table if exists t1;
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;