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

MySQL数据库

开发平台:

Visual C++

  1. ###############################################
  2. #                                             #
  3. #   Prepared Statements test on HEAP tables   #
  4. #                                             #
  5. ###############################################
  6. #    
  7. # NOTE: PLEASE SEE ps_1general.test (bottom) 
  8. #       BEFORE ADDING NEW TEST CASES HERE !!!
  9. use test;
  10. let $type= 'HEAP' ;
  11. --disable_warnings
  12. drop table if exists t1, t9 ;
  13. --enable_warnings
  14. eval create table t1
  15. (
  16.   a int, b varchar(30),
  17.   primary key(a)
  18. ) engine = $type ;
  19. --disable_warnings
  20. drop table if exists t9;
  21. --enable_warnings
  22. # The used table type doesn't support BLOB/TEXT columns.
  23. # (The server would send error 1163  .)
  24. # So we use char(100) instead.
  25. eval create table t9 
  26. (
  27.   c1  tinyint, c2  smallint, c3  mediumint, c4  int,
  28.   c5  integer, c6  bigint, c7  float, c8  double,
  29.   c9  double precision, c10 real, c11 decimal(7, 4), c12 numeric(8, 4),
  30.   c13 date, c14 datetime, c15 timestamp(14), c16 time,
  31.   c17 year, c18 bit, c19 bool, c20 char,
  32.   c21 char(10), c22 varchar(30), c23 char(100), c24 char(100),
  33.   c25 char(100), c26 char(100), c27 char(100), c28 char(100),
  34.   c29 char(100), c30 char(100), c31 enum('one', 'two', 'three'),
  35.   c32 set('monday', 'tuesday', 'wednesday'),
  36.   primary key(c1)
  37. ) engine = $type ;
  38. -- source include/ps_renew.inc
  39. -- source include/ps_query.inc
  40. -- source include/ps_modify.inc
  41. -- source include/ps_modify1.inc
  42. -- source include/ps_conv.inc
  43. drop table t1, t9;
  44. # End of 4.1 tests