mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / t / exampledb.test
blobfbb2a18f344f0e0d03245da02918be2e9a134d2c
2 # Simple test for the example storage engine
3 # Taken fromm the select test
5 -- source include/have_exampledb.inc
7 --disable_warnings
8 # Clean up if event's test fails
9 drop database if exists events_test;
10 drop database if exists events_test2;
12 drop table if exists t1;
13 --enable_warnings
15 CREATE TABLE t1 (
16   Period smallint(4) unsigned zerofill DEFAULT '0000' NOT NULL,
17   Varor_period smallint(4) unsigned DEFAULT '0' NOT NULL
18 ) ENGINE=example;
20 drop table t1;
22 # End of 4.1 tests