exampledb.test
Upload User: romrleung
Upload Date: 2022-05-23
Package Size: 18897k
Code Size: 0k
Category:

MySQL

Development Platform:

Visual C++

  1. #
  2. # Simple test for the example storage engine
  3. # Taken fromm the select test
  4. #
  5. -- source include/have_exampledb.inc
  6. --disable_warnings
  7. drop table if exists t1;
  8. --enable_warnings
  9. CREATE TABLE t1 (
  10.   Period smallint(4) unsigned zerofill DEFAULT '0000' NOT NULL,
  11.   Varor_period smallint(4) unsigned DEFAULT '0' NOT NULL
  12. ) ENGINE=example;
  13. drop table t1;
  14. # End of 4.1 tests