create.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Check some special create statements.
  3. #
  4. create table t1 (b char(0));
  5. insert into t1 values (""),(null);
  6. select * from t1;
  7. drop table if exists t1;
  8. create table t1 (b char(0) not null);
  9. create table if not exists t1 (b char(0) not null);
  10. insert into t1 values (""),(null);
  11. select * from t1;
  12. drop table if exists t1;
  13. #
  14. # Test of some CREATE TABLE'S that should fail
  15. #
  16. !$1146 create table t2 type=heap select * from t1;
  17. !$1146 create table t2 select auto+1 from t1;
  18. drop table if exists t1,t2;
  19. !$1167 create table t1 (b char(0) not null, index(b));
  20. !$1164 create table t1 (a int not null auto_increment,primary key (a)) type=heap;
  21. !$1163 create table t1 (a int not null,b text) type=heap;
  22. !$1171 create table t1 (a int ,primary key(a)) type=heap;
  23. !$1121 create table t1 (a int,b text, index(a)) type=isam;
  24. !$1073 create table t1 (a int,b text, index(b)) type=isam;
  25. drop table if exists t1;
  26. !$1075 create table t1 (ordid int(8) not null auto_increment, ord  varchar(50) not null, primary key (ord,ordid)) type=isam;
  27. !$1164 create table t1 (ordid int(8) not null auto_increment, ord  varchar(50) not null, primary key (ord,ordid)) type=heap;
  28. !$1171 create table t1 (ordid int(8), primary key (ordid));
  29. !$1121 create table t1 (ordid int(8), unique (ordid)) type=isam;
  30. -- error 1044,1
  31. create table not_existing_database.test (a int);
  32. !$1103 create table `a/a` (a int);
  33. !$1103 create table `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa int);
  34. !$1059 create table a (`aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` int);
  35. #
  36. # test of dummy table names
  37. #
  38. create table 1ea10 (1a20 int,1e int);
  39. insert into 1ea10 values(1,1);
  40. select 1ea10.1a20,1e+ 1e+10 from 1ea10;
  41. drop table 1ea10;
  42. create table t1 (t1.index int);
  43. drop table t1;
  44. drop database if exists test_$1;
  45. create database test_$1;
  46. create table test_$1.$test1 (a$1 int, $b int, c$ int);
  47. insert into test_$1.$test1 values (1,2,3);
  48. select a$1, $b, c$ from test_$1.$test1;
  49. create table test_$1.test2$ (a int);
  50. drop table test_$1.test2$;
  51. drop database test_$1;