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

MySQL数据库

开发平台:

Visual C++

  1. --disable_warnings
  2. drop table if exists t1,t2,t3;
  3. --enable_warnings
  4. SET SQL_WARNINGS=1;
  5. #
  6. # This failed for Elizabeth Mattijsen
  7. #
  8. CREATE TABLE t1 (
  9.   ID CHAR(32) NOT NULL,
  10.   name CHAR(32) NOT NULL,
  11.   value CHAR(255),
  12.   INDEX indexIDname (ID(8),name(8))
  13. ) ;
  14. INSERT INTO t1 VALUES
  15. ('keyword','indexdir','/export/home/local/www/database/indexes/keyword');
  16. INSERT INTO t1 VALUES ('keyword','urlprefix','text/ /text');
  17. INSERT INTO t1 VALUES ('keyword','urlmap','/text/ /');
  18. INSERT INTO t1 VALUES ('keyword','attr','personal employee company');
  19. INSERT INTO t1 VALUES
  20. ('emailgids','indexdir','/export/home/local/www/database/indexes/emailgids');
  21. INSERT INTO t1 VALUES ('emailgids','urlprefix','text/ /text');
  22. INSERT INTO t1 VALUES ('emailgids','urlmap','/text/ /');
  23. INSERT INTO t1 VALUES ('emailgids','attr','personal employee company');
  24. SELECT value FROM t1 WHERE ID='emailgids' AND name='attr';
  25. drop table t1;
  26. #
  27. # Problem with many key parts and many or
  28. #
  29. CREATE TABLE t1 (
  30.   price int(5) DEFAULT '0' NOT NULL,
  31.   area varchar(40) DEFAULT '' NOT NULL,
  32.   type varchar(40) DEFAULT '' NOT NULL,
  33.   transityes enum('Y','N') DEFAULT 'Y' NOT NULL,
  34.   shopsyes enum('Y','N') DEFAULT 'Y' NOT NULL,
  35.   schoolsyes enum('Y','N') DEFAULT 'Y' NOT NULL,
  36.   petsyes enum('Y','N') DEFAULT 'Y' NOT NULL,
  37.   KEY price (price,area,type,transityes,shopsyes,schoolsyes,petsyes)
  38. );
  39. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','N','N','N','N');
  40. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','N','N','N','N');
  41. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','','','','');
  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. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
  45. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
  46. INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
  47.  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;
  48. drop table t1;
  49. #
  50. # No longer a problem with primary key
  51. #
  52. CREATE TABLE t1 (program enum('signup','unique','sliding') not null,  type enum('basic','sliding','signup'),  sites set('mt'),  PRIMARY KEY (program));
  53. # This no longer give an error for wrong primary key
  54. ALTER TABLE t1 modify program enum('signup','unique','sliding');
  55. drop table t1;
  56. #
  57. # Test of compressed decimal index.
  58. #
  59. CREATE TABLE t1 (
  60.   name varchar(50) DEFAULT '' NOT NULL,
  61.   author varchar(50) DEFAULT '' NOT NULL,
  62.   category decimal(10,0) DEFAULT '0' NOT NULL,
  63.   email varchar(50),
  64.   password varchar(50),
  65.   proxy varchar(50),
  66.   bitmap varchar(20),
  67.   msg varchar(255),
  68.   urlscol varchar(127),
  69.   urlhttp varchar(127),
  70.   timeout decimal(10,0),
  71.   nbcnx decimal(10,0),
  72.   creation decimal(10,0),
  73.   livinguntil decimal(10,0),
  74.   lang decimal(10,0),
  75.   type decimal(10,0),
  76.   subcat decimal(10,0),
  77.   subtype decimal(10,0),
  78.   reg char(1),
  79.   scs varchar(255),
  80.   capacity decimal(10,0),
  81.   userISP varchar(50),
  82.   CCident varchar(50) DEFAULT '' NOT NULL,
  83.   PRIMARY KEY (name,author,category)
  84. );
  85. INSERT INTO t1 VALUES
  86. ('patnom','patauteur',0,'p.favre@cryo-networks.fr',NULL,NULL,'#p2sndnq6ae5g1u6t','essai salut','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');
  87. INSERT INTO t1 VALUES
  88. ('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');
  89. select * from t1 where name='patnom' and author='patauteur' and category=0;
  90. drop table t1;
  91. #
  92. # Problem with search on partial index
  93. #
  94. create table t1
  95. (
  96.   name_id int not null auto_increment,
  97.   name blob,
  98.   INDEX name_idx (name(5)),
  99.   primary key (name_id)
  100. );
  101. INSERT t1 VALUES(NULL,'/');
  102. INSERT t1 VALUES(NULL,'[T,U]_axpby');         
  103. SELECT * FROM t1 WHERE name='[T,U]_axpy';
  104. SELECT * FROM t1 WHERE name='[T,U]_axpby';
  105. create table t2
  106. (
  107.   name_id int not null auto_increment,
  108.   name char(255) binary,
  109.   INDEX name_idx (name(5)),
  110.   primary key (name_id)
  111. );
  112. INSERT t2 select * from t1;
  113. SELECT * FROM t2 WHERE name='[T,U]_axpy';
  114. SELECT * FROM t2 WHERE name='[T,U]_axpby';
  115. drop table t1,t2;
  116. #
  117. # Test bug with long primary key
  118. #
  119. create table t1
  120. (
  121.    SEQNO                         numeric(12 ) not null,
  122.    MOTYPEID                 numeric(12 ) not null,
  123.    MOINSTANCEID     numeric(12 ) not null,
  124.    ATTRID                       numeric(12 ) not null,
  125.    VALUE                         varchar(120) not null,
  126.    primary key (SEQNO, MOTYPEID, MOINSTANCEID, ATTRID, VALUE )
  127. );
  128. INSERT INTO t1 VALUES (1, 1, 1, 1, 'a'); 
  129. INSERT INTO t1 VALUES (1, 1, 1, 1, 'b'); 
  130. --error 1062
  131. INSERT INTO t1 VALUES (1, 1, 1, 1, 'a');
  132. drop table t1;
  133. #
  134. # Test with blob + tinyint key
  135. # (Failed for Greg Valure)
  136. #
  137. CREATE TABLE t1 (
  138.   a tinytext NOT NULL,
  139.   b tinyint(3) unsigned NOT NULL default '0',
  140.   PRIMARY KEY (a(32),b)
  141. ) ENGINE=MyISAM;
  142. INSERT INTO t1 VALUES ('a',1),('a',2);
  143. SELECT * FROM t1 WHERE a='a' AND b=2;
  144. SELECT * FROM t1 WHERE a='a' AND b in (2);
  145. SELECT * FROM t1 WHERE a='a' AND b in (1,2);
  146. drop table t1;
  147. #
  148. # Test of create key order
  149. #
  150. create table t1 (a int not null unique, b int unique, c int, d int not null primary key, key(c), e int not null unique);
  151. show keys from t1;
  152. drop table t1;
  153. #
  154. # Problem with UNIQUE() with NULL parts and auto increment
  155. #
  156. CREATE TABLE t1 (c CHAR(10) NOT NULL,i INT NOT NULL AUTO_INCREMENT,
  157. UNIQUE (c,i));
  158. INSERT INTO t1 (c) VALUES (NULL),(NULL);
  159. SELECT * FROM t1;
  160. INSERT INTO t1 (c) VALUES ('a'),('a');
  161. SELECT * FROM t1;
  162. DROP TABLE IF EXISTS t1;
  163. CREATE TABLE t1 (c CHAR(10) NULL, i INT NOT NULL AUTO_INCREMENT,
  164. UNIQUE (c,i));
  165. INSERT INTO t1 (c) VALUES (NULL),(NULL);
  166. SELECT * FROM t1;
  167. INSERT INTO t1 (c) VALUES ('a'),('a');
  168. SELECT * FROM t1;
  169. drop table t1;
  170. #
  171. # longer keys
  172. #
  173. create table t1 (i int, a char(200), b text, unique (a), unique (b(300))) charset utf8;
  174. insert t1 values (1, repeat('a',210), repeat('b', 310));
  175. insert t1 values (2, repeat(0xD0B1,215), repeat(0xD0B1, 310));
  176. select i, length(a), length(b), char_length(a), char_length(b) from t1;
  177. select i from t1 where a=repeat(_utf8 'a',200);
  178. select i from t1 where a=repeat(_utf8 0xD0B1,200);
  179. select i from t1 where b=repeat(_utf8 'b',310);
  180. drop table t1;
  181. #
  182. # Test of key read with primary key (Bug #3497)
  183. #
  184. CREATE TABLE t1 (id int unsigned auto_increment, name char(50), primary key (id)) engine=myisam;
  185. insert into t1 (name) values ('a'), ('b'),('c'),('d'),('e'),('f'),('g');
  186. explain select 1 from t1 where id =2;
  187. explain select 1 from t1 where id =2 or id=3;
  188. explain select name from t1 where id =2;
  189. ALTER TABLE t1 DROP PRIMARY KEY, ADD INDEX (id);
  190. explain select 1 from t1 where id =2;
  191. drop table t1;
  192. #
  193. # Test of problem with key read (Bug #3666)
  194. #
  195. CREATE TABLE t1 (numeropost mediumint(8) unsigned NOT NULL default '0', numreponse int(10) unsigned NOT NULL auto_increment, PRIMARY KEY (numeropost,numreponse), UNIQUE KEY numreponse (numreponse));
  196. INSERT INTO t1 (numeropost,numreponse) VALUES ('1','1'),('1','2'),('2','3'),('2','4');
  197. SELECT numeropost FROM t1 WHERE numreponse='1';
  198. EXPLAIN SELECT numeropost FROM t1 WHERE numreponse='1';
  199. FLUSH TABLES;
  200. SELECT numeropost FROM t1 WHERE numreponse='1';
  201. drop table t1;
  202. #
  203. # UNIQUE prefix keys and multi-byte charsets
  204. #
  205. create table t1 (c varchar(30) character set utf8, t text character set utf8, unique (c(2)), unique (t(3))) engine=myisam;
  206. show create table t1;
  207. insert t1 values ('cccc', 'tttt'),
  208.   (0xD0B1212223D0B1D0B1D0B1D0B1D0B1, 0xD0B1D0B1212223D0B1D0B1D0B1D0B1),
  209.   (0xD0B1222123D0B1D0B1D0B1D0B1D0B1, 0xD0B1D0B1222123D0B1D0B1D0B1D0B1);
  210. --error 1062
  211. insert t1 (c) values ('cc22');
  212. --error 1062
  213. insert t1 (t) values ('ttt22');
  214. --error 1062
  215. insert t1 (c) values (0xD0B1212322D0B1D0B1D0B1D0B1D0B1);
  216. --error 1062
  217. insert t1 (t) values (0xD0B1D0B1212322D0B1D0B1D0B1D0B1);
  218. select c from t1 where c='cccc';
  219. select t from t1 where t='tttt';
  220. select c from t1 where c=0xD0B1212223D0B1D0B1D0B1D0B1D0B1;
  221. select t from t1 where t=0xD0B1D0B1212223D0B1D0B1D0B1D0B1;
  222. drop table t1;
  223. #
  224. # BUG#6151 - myisam index corruption
  225. #
  226. DROP TABLE IF EXISTS t1;
  227. CREATE TABLE t1 (
  228.   c1 int,
  229.   c2 varbinary(240),
  230.   UNIQUE KEY (c1),
  231.   KEY (c2)
  232. ) ENGINE=MyISAM;
  233. INSERT INTO t1 VALUES (1,'ZZZZ');
  234. INSERT INTO t1 VALUES (2,'ZZZZZZ');
  235. INSERT INTO t1 VALUES (3,'ZZZZ');
  236. select c1 from t1 where c2='ZZZZ';
  237. DELETE FROM t1 WHERE (c1 = 1);
  238. check table t1;
  239. select c1 from t1 where c2='ZZZZ';
  240. DELETE FROM t1 WHERE (c1 = 3);
  241. check table t1;
  242. select c1 from t1 where c2='ZZZZ';
  243. #
  244. # test delete of keys in a different order
  245. #
  246. truncate table t1;
  247. insert into t1 values(1,"aaaa"),(2,"aaab"),(3,"aaac"),(4,"aaccc");
  248. delete from t1 where c1=3;
  249. delete from t1 where c1=1;
  250. delete from t1 where c1=4;
  251. check table t1;
  252. drop table t1;
  253. #
  254. # Bug 6166: index prefix length of 0 not rejected
  255. #
  256. # this test should fail in 5.0
  257. # to fix it, remove #ifdef in 
  258. # file sql_yacc.yy(key_part)
  259. # create dedicated error code for this and
  260. # and change my_printf_error() to my_error
  261. --error 1105
  262. create table t1 (c char(10), index (c(0)));
  263. #
  264. # Bug #6126: Duplicate columns in keys should fail
  265. # Bug #6252: (dup)
  266. #
  267. --error 1060
  268. create table t1 (c char(10), index (c,c));
  269. --error 1060
  270. create table t1 (c1 char(10), c2 char(10), index (c1,c2,c1));
  271. --error 1060
  272. create table t1 (c1 char(10), c2 char(10), index (c1,c1,c2));
  273. --error 1060
  274. create table t1 (c1 char(10), c2 char(10), index (c2,c1,c1));
  275. create table t1 (c1 char(10), c2 char(10));
  276. --error 1060
  277. alter table t1 add key (c1,c1);
  278. --error 1060
  279. alter table t1 add key (c2,c1,c1);
  280. --error 1060
  281. alter table t1 add key (c1,c2,c1);
  282. --error 1060
  283. alter table t1 add key (c1,c1,c2);
  284. drop table t1;
  285. #
  286. # Bug#12565 - ERROR 1034 when running simple UPDATE or DELETE 
  287. #             on large MyISAM table
  288. #
  289. create table t1 (
  290.   c1 int,
  291.   c2 varchar(20) not null,
  292.   primary key (c1),
  293.   key (c2(10))
  294. ) engine=myisam;
  295. insert into t1 values (1,'');
  296. insert into t1 values (2,' ttTest String');
  297. insert into t1 values (3,' ntTest String');
  298. update t1 set c2 = 'New Test String' where c1 = 1;
  299. select * from t1;
  300. # End of 4.1 tests