exampledb.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

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