diff options
author | unknown <brian@avenger.(none)> | 2004-08-13 17:14:36 -0700 |
---|---|---|
committer | unknown <brian@avenger.(none)> | 2004-08-13 17:14:36 -0700 |
commit | 24e03b49a230443d52b82d5352072d64d314aab4 (patch) | |
tree | f0f27b1d97cda6c636e4f7583f68ce41daf745de /mysql-test/r/exampledb.result | |
parent | 2d8f4a61bf49613f326407af75ce6dd8badfe21c (diff) | |
download | mariadb-git-24e03b49a230443d52b82d5352072d64d314aab4.tar.gz |
Adding test cases for the example storage engine (so that you can test to see if it was built correctly).
Diffstat (limited to 'mysql-test/r/exampledb.result')
-rw-r--r-- | mysql-test/r/exampledb.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/exampledb.result b/mysql-test/r/exampledb.result new file mode 100644 index 00000000000..9bfb77c1c0b --- /dev/null +++ b/mysql-test/r/exampledb.result @@ -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; |