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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # This failed for Elizabeth Mattijsen
  3. #
  4. drop table if exists t1,t2,t3;
  5. CREATE TABLE t1 (
  6.   ID CHAR(32) NOT NULL,
  7.   name CHAR(32) NOT NULL,
  8.   value CHAR(255),
  9.   INDEX indexIDname (ID(8),name(8))
  10. ) ;
  11. INSERT INTO t1 VALUES
  12. ('keyword','indexdir','/export/home/local/www/database/indexes/keyword');
  13. INSERT INTO t1 VALUES ('keyword','urlprefix','text/ /text');
  14. INSERT INTO t1 VALUES ('keyword','urlmap','/text/ /');
  15. INSERT INTO t1 VALUES ('keyword','attr','personal employee company');
  16. INSERT INTO t1 VALUES
  17. ('emailgids','indexdir','/export/home/local/www/database/indexes/emailgids');
  18. INSERT INTO t1 VALUES ('emailgids','urlprefix','text/ /text');
  19. INSERT INTO t1 VALUES ('emailgids','urlmap','/text/ /');
  20. INSERT INTO t1 VALUES ('emailgids','attr','personal employee company');
  21. SELECT value FROM t1 WHERE ID='emailgids' AND name='attr';
  22. drop table t1;
  23. #
  24. # Problem with many key parts and many or
  25. #
  26. CREATE TABLE t1 (
  27.   price int(5) DEFAULT '0' NOT NULL,
  28.   area varchar(40) DEFAULT '' NOT NULL,
  29.   type varchar(40) DEFAULT '' NOT NULL,
  30.   transityes enum('Y','N') DEFAULT 'Y' NOT NULL,
  31.   shopsyes enum('Y','N') DEFAULT 'Y' NOT NULL,
  32.   schoolsyes enum('Y','N') DEFAULT 'Y' NOT NULL,
  33.   petsyes enum('Y','N') DEFAULT 'Y' NOT NULL,
  34.   KEY price (price,area,type,transityes,shopsyes,schoolsyes,petsyes)
  35. );
  36. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','N','N','N','N');
  37. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','N','N','N','N');
  38. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','','','','');
  39. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
  40. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
  41. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
  42. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
  43. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
  44.  SELECT * FROM t1 WHERE area='Vancouver' and transityes='y' and schoolsyes='y' and ( ((type='1 Bedroom' or type='Studio/Bach') and (price<=500)) or ((type='2 Bedroom') and (price<=550)) or ((type='Shared/Roomate') and (price<=300)) or ((type='Room and Board') and (price<=500)) ) and price <= 400;
  45. drop table t1;
  46. #
  47. # problem med primary key
  48. #
  49. CREATE TABLE t1 (program enum('signup','unique','sliding') not null,  type enum('basic','sliding','signup'),  sites set('mt'),  PRIMARY KEY (program));
  50. # The following should give an error for wrong primary key
  51. !$1171 ALTER TABLE t1 modify program enum('signup','unique','sliding');
  52. drop table t1;
  53. #
  54. # Test of compressed decimal index.
  55. #
  56. CREATE TABLE t1 (
  57.   name varchar(50) DEFAULT '' NOT NULL,
  58.   author varchar(50) DEFAULT '' NOT NULL,
  59.   category decimal(10,0) DEFAULT '0' NOT NULL,
  60.   email varchar(50),
  61.   password varchar(50),
  62.   proxy varchar(50),
  63.   bitmap varchar(20),
  64.   msg varchar(255),
  65.   urlscol varchar(127),
  66.   urlhttp varchar(127),
  67.   timeout decimal(10,0),
  68.   nbcnx decimal(10,0),
  69.   creation decimal(10,0),
  70.   livinguntil decimal(10,0),
  71.   lang decimal(10,0),
  72.   type decimal(10,0),
  73.   subcat decimal(10,0),
  74.   subtype decimal(10,0),
  75.   reg char(1),
  76.   scs varchar(255),
  77.   capacity decimal(10,0),
  78.   userISP varchar(50),
  79.   CCident varchar(50) DEFAULT '' NOT NULL,
  80.   PRIMARY KEY (name,author,category)
  81. );
  82. INSERT INTO t1 VALUES
  83. ('patnom','patauteur',0,'p.favre@cryo-networks.fr',NULL,NULL,'#p2sndnq6ae5g1u6t','essainsalut','scol://195.242.78.119:patauteur.patnom',NULL,NULL,NULL,950036174,-882087474,NULL,3,0,3,'1','Pub/patnom/futur_divers.scs',NULL,'pat','CC1');
  84. INSERT INTO t1 VALUES
  85. ('LeNomDeMonSite','Marc',0,'m.barilley@cryo-networks.fr',NULL,NULL,NULL,NULL,'scol://195.242.78.119:Marc.LeNomDeMonSite',NULL,NULL,NULL,950560434,-881563214,NULL,3,0,3,'1','Pub/LeNomDeMonSite/domus_hibere.scs',NULL,'Marq','CC1');
  86. select * from t1 where name='patnom' and author='patauteur' and category=0;
  87. drop table t1;
  88. #
  89. # Problem with search on partial index
  90. #
  91. create table t1
  92. (
  93.   name_id int not null auto_increment,
  94.   name blob,
  95.   INDEX name_idx (name(5)),
  96.   primary key (name_id)
  97. );
  98. INSERT t1 VALUES(NULL,'/');
  99. INSERT t1 VALUES(NULL,'[T,U]_axpby');         
  100. SELECT * FROM t1 WHERE name='[T,U]_axpy';
  101. SELECT * FROM t1 WHERE name='[T,U]_axpby';
  102. create table t2
  103. (
  104.   name_id int not null auto_increment,
  105.   name char(255) binary,
  106.   INDEX name_idx (name(5)),
  107.   primary key (name_id)
  108. );
  109. INSERT t2 select * from t1;
  110. SELECT * FROM t2 WHERE name='[T,U]_axpy';
  111. SELECT * FROM t2 WHERE name='[T,U]_axpby';
  112. drop table t1,t2;
  113. #
  114. # Test bug with long primary key
  115. #
  116. create table t1
  117. (
  118.    SEQNO                         numeric(12 ) not null,
  119.    MOTYPEID                 numeric(12 ) not null,
  120.    MOINSTANCEID     numeric(12 ) not null,
  121.    ATTRID                       numeric(12 ) not null,
  122.    VALUE                         varchar(120) not null,
  123.    primary key (SEQNO, MOTYPEID, MOINSTANCEID, ATTRID, VALUE )
  124. );
  125. INSERT INTO t1 VALUES (1, 1, 1, 1, 'a'); 
  126. INSERT INTO t1 VALUES (1, 1, 1, 1, 'b'); 
  127. !$1062 INSERT INTO t1 VALUES (1, 1, 1, 1, 'a');
  128. drop table t1;
  129. #
  130. # Test with blob + tinyint key
  131. # (Failed for Greg Valure)
  132. #
  133. CREATE TABLE t1 (
  134.   a tinytext NOT NULL,
  135.   b tinyint(3) unsigned NOT NULL default '0',
  136.   PRIMARY KEY (a(32),b)
  137. ) TYPE=MyISAM;
  138. INSERT INTO t1 VALUES ('a',1),('a',2);
  139. SELECT * FROM t1 WHERE a='a' AND b=2;
  140. SELECT * FROM t1 WHERE a='a' AND b in (2);
  141. SELECT * FROM t1 WHERE a='a' AND b in (1,2);
  142. drop table t1;