summaryrefslogtreecommitdiff
path: root/mysql-test/t/exampledb.test
blob: fbb2a18f344f0e0d03245da02918be2e9a134d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# Simple test for the example storage engine
# Taken fromm the select test
#
-- source include/have_exampledb.inc

--disable_warnings
# Clean up if event's test fails
drop database if exists events_test;
drop database if exists events_test2;

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;

# End of 4.1 tests