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

MySQL数据库

开发平台:

Visual C++

  1. ############### include/ps_create.inc ##################
  2. #                                                      #
  3. #  drop + create the tables used in most PS test cases #
  4. #         t/ps_*.test                                  #
  5. #                                                      #
  6. ########################################################
  7. #    
  8. # NOTE: PLEASE SEE ps_1general.test (bottom) 
  9. #       BEFORE ADDING NEW TABLES HERE !!!
  10. #
  11. # Please be aware, that this file will be sourced by several
  12. # test case files stored within the subdirectory 't'.
  13. # So every change here will affect several test cases.
  14. #----------- Please insert your table definitions here ----------#
  15. #---- Please do not alter the following table definitions -------#
  16. --disable_warnings
  17. drop table if exists t1, t9 ;
  18. --enable_warnings
  19. eval create table t1
  20. (
  21.   a int, b varchar(30),
  22.   primary key(a)
  23. ) engine = $type ;
  24. eval create table t9 
  25. (
  26.   c1  tinyint, c2  smallint, c3  mediumint, c4  int,
  27.   c5  integer, c6  bigint, c7  float, c8  double,
  28.   c9  double precision, c10 real, c11 decimal(7, 4), c12 numeric(8, 4),
  29.   c13 date, c14 datetime, c15 timestamp(14), c16 time,
  30.   c17 year, c18 bit, c19 bool, c20 char,
  31.   c21 char(10), c22 varchar(30), c23 tinyblob, c24 tinytext,
  32.   c25 blob, c26 text, c27 mediumblob, c28 mediumtext,
  33.   c29 longblob, c30 longtext, c31 enum('one', 'two', 'three'),
  34.   c32 set('monday', 'tuesday', 'wednesday'),
  35.   primary key(c1)
  36. ) engine = $type ;