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

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_bdb.inc
  2. #
  3. # Small basic test with ignore
  4. #
  5. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8;
  6. create table t1 (id int unsigned not null auto_increment, code tinyint unsigned not null, name char(20) not null, primary key (id), key (code), unique (name)) type=bdb;
  7. insert into t1 (code, name) values (1, 'Tim'), (1, 'Monty'), (2, 'David'), (2, 'Erik'), (3, 'Sasha'), (3, 'Jeremy'), (4, 'Matt');
  8. select id, code, name from t1 order by id;
  9. update ignore t1 set id = 8, name = 'Sinisa' where id < 3;
  10. select id, code, name from t1 order by id;
  11. update ignore t1 set id = id + 10, name = 'Ralph' where id < 4;
  12. select id, code, name from t1 order by id;
  13. drop table t1;
  14. #
  15. # A bit bigger test
  16. #
  17. CREATE TABLE t1 (
  18.   id int(11) NOT NULL auto_increment,
  19.   parent_id int(11) DEFAULT '0' NOT NULL,
  20.   level tinyint(4) DEFAULT '0' NOT NULL,
  21.   PRIMARY KEY (id),
  22.   KEY parent_id (parent_id),
  23.   KEY level (level)
  24. ) type=bdb;
  25. INSERT INTO t1 VALUES (1,0,0),(3,1,1),(4,1,1),(8,2,2),(9,2,2),(17,3,2),(22,4,2),(24,4,2),(28,5,2),(29,5,2),(30,5,2),(31,6,2),(32,6,2),(33,6,2),(203,7,2),(202,7,2),(20,3,2),(157,0,0),(193,5,2),(40,7,2),(2,1,1),(15,2,2),(6,1,1),(34,6,2),(35,6,2),(16,3,2),(7,1,1),(36,7,2),(18,3,2),(26,5,2),(27,5,2),(183,4,2),(38,7,2),(25,5,2),(37,7,2),(21,4,2),(19,3,2),(5,1,1),(179,5,2);
  26. update t1 set parent_id=parent_id+100;
  27. select * from t1 where parent_id=102;
  28. update t1 set id=id+1000;
  29. -- error 1062
  30. update t1 set id=1024 where id=1009; 
  31. select * from t1;
  32. update ignore t1 set id=id+1; # This will change all rows
  33. select * from t1;
  34. update ignore t1 set id=1023 where id=1010;
  35. select * from t1 where parent_id=102;
  36. explain select level from t1 where level=1;
  37. explain select level,id from t1 where level=1;
  38. explain select level,id,parent_id from t1 where level=1;
  39. select level,id from t1 where level=1;
  40. select level,id,parent_id from t1 where level=1;
  41. optimize table t1;
  42. show keys from t1;
  43. drop table t1;
  44. #
  45. # Test replace
  46. #
  47. CREATE TABLE t1 (
  48.   gesuchnr int(11) DEFAULT '0' NOT NULL,
  49.   benutzer_id int(11) DEFAULT '0' NOT NULL,
  50.   PRIMARY KEY (gesuchnr,benutzer_id)
  51. ) type=BDB;
  52. replace into t1 (gesuchnr,benutzer_id) values (2,1);
  53. replace into t1 (gesuchnr,benutzer_id) values (1,1);
  54. replace into t1 (gesuchnr,benutzer_id) values (1,1);
  55. select * from t1;
  56. drop table t1;
  57. #
  58. # test delete using hidden_primary_key
  59. #
  60. create table t1 (a int) type=bdb;
  61. insert into t1 values (1), (2);
  62. optimize table t1;
  63. delete from t1 where a = 1;
  64. select * from t1;
  65. check table t1;
  66. drop table t1;
  67. create table t1 (a int,b varchar(20)) type=bdb;
  68. insert into t1 values (1,""), (2,"testing");
  69. delete from t1 where a = 1;
  70. select * from t1;
  71. create index skr on t1 (a);
  72. insert into t1 values (3,""), (4,"testing");
  73. analyze table t1;
  74. show keys from t1;
  75. drop table t1;
  76. # Test of reading on secondary key with may be null
  77. create table t1 (a int,b varchar(20),key(a)) type=bdb;
  78. insert into t1 values (1,""), (2,"testing");
  79. select * from t1 where a = 1;
  80. drop table t1;
  81. #
  82. # Test auto_increment on sub key
  83. #
  84. create table t1 (a char(10) not null, b int not null auto_increment, primary key(a,b)) type=BDB;
  85. insert into t1 values ("a",1),("b",2),("a",2),("c",1);
  86. insert into t1 values ("a",NULL),("b",NULL),("c",NULL),("e",NULL);
  87. insert into t1 (a) values ("a"),("b"),("c"),("d");
  88. insert into t1 (a) values ('k'),('d');
  89. insert into t1 (a) values ("a");
  90. insert into t1 values ("d",last_insert_id());
  91. select * from t1;
  92. flush tables;
  93. select count(*) from t1;
  94. drop table t1;
  95. #
  96. # Test rollback
  97. #
  98. create table t1 (n int not null primary key) type=bdb;
  99. set autocommit=0;
  100. insert into t1 values (4);
  101. rollback;
  102. select n, "after rollback" from t1;
  103. insert into t1 values (4);
  104. commit;
  105. select n, "after commit" from t1;
  106. commit;
  107. insert into t1 values (5);
  108. -- error 1062
  109. insert into t1 values (4);
  110. commit;
  111. select n, "after commit" from t1;
  112. set autocommit=1;
  113. insert into t1 values (6);
  114. -- error 1062
  115. insert into t1 values (4);
  116. select n from t1;
  117. # nop
  118. rollback;
  119. drop table t1;
  120. #
  121. # Testing transactions
  122. #
  123. create table t1 ( id int NOT NULL PRIMARY KEY, nom varchar(64)) type=BDB;
  124. begin;
  125. insert into t1 values(1,'hamdouni');
  126. select id as afterbegin_id,nom as afterbegin_nom from t1;
  127. rollback;
  128. select id as afterrollback_id,nom as afterrollback_nom from t1;
  129. set autocommit=0;
  130. insert into t1 values(2,'mysql');
  131. select id as afterautocommit0_id,nom as afterautocommit0_nom from t1;
  132. rollback;
  133. select id as afterrollback_id,nom as afterrollback_nom from t1;
  134. set autocommit=1;
  135. drop table t1;
  136. #
  137. # Simple not autocommit test
  138. CREATE TABLE t1 (id char(8) not null primary key, val int not null) type=bdb;
  139. insert into t1 values ('pippo', 12);
  140. -- error 1062
  141. insert into t1 values ('pippo', 12); # Gives error
  142. delete from t1;
  143. delete from t1 where id = 'pippo';
  144. select * from t1;
  145. insert into t1 values ('pippo', 12);
  146. set autocommit=0;
  147. delete from t1;
  148. rollback;
  149. select * from t1;
  150. delete from t1;
  151. commit;
  152. select * from t1;
  153. drop table t1;
  154. set autocommit=1;
  155. #
  156. # The following simple tests failed at some point
  157. #
  158. CREATE TABLE t1 (ID INTEGER NOT NULL PRIMARY KEY, NAME VARCHAR(64)) TYPE=BDB;
  159. INSERT INTO t1 VALUES (1, 'Jochen');
  160. select * from t1;
  161. drop table t1;
  162. CREATE TABLE t1 ( _userid VARCHAR(60) NOT NULL PRIMARY KEY) TYPE=BDB;
  163. set autocommit=0;
  164. INSERT INTO t1  SET _userid='marc@anyware.co.uk';
  165. COMMIT;
  166. SELECT * FROM t1;
  167. SELECT _userid FROM t1 WHERE _userid='marc@anyware.co.uk';
  168. drop table t1;
  169. set autocommit=1;
  170. #
  171. # Test when reading on part of unique key
  172. #
  173. CREATE TABLE t1 (
  174.   user_id int(10) DEFAULT '0' NOT NULL,
  175.   name varchar(100),
  176.   phone varchar(100),
  177.   ref_email varchar(100) DEFAULT '' NOT NULL,
  178.   detail varchar(200),
  179.   PRIMARY KEY (user_id,ref_email)
  180. )type=bdb;
  181. INSERT INTO t1 VALUES (10292,'sanjeev','29153373','sansh777@hotmail.com','xxx'),(10292,'shirish','2333604','shirish@yahoo.com','ddsds'),(10292,'sonali','323232','sonali@bolly.com','filmstar');
  182. select * from t1 where user_id=10292;
  183. INSERT INTO t1 VALUES (10291,'sanjeev','29153373','sansh777@hotmail.com','xxx'),(10293,'shirish','2333604','shirish@yahoo.com','ddsds');
  184. select * from t1 where user_id=10292;
  185. select * from t1 where user_id>=10292;
  186. select * from t1 where user_id>10292;
  187. select * from t1 where user_id<10292;
  188. drop table t1;
  189. #
  190. # Test that keys are created in right order
  191. #
  192. CREATE TABLE t1 (a int not null, b int not null,c int not null,
  193. key(a),primary key(a,b), unique(c),key(a),unique(b));
  194. show index from t1;
  195. drop table t1;
  196. #
  197. # Test of ALTER TABLE and BDB tables
  198. #
  199. create table t1 (col1 int not null, col2 char(4) not null, primary key(col1));
  200. alter table t1 type=BDB;
  201. insert into t1 values ('1','1'),('5','2'),('2','3'),('3','4'),('4','4');
  202. select * from t1;
  203. update t1 set col2='7' where col1='4';
  204. select * from t1;
  205. alter table t1 add co3 int not null;
  206. select * from t1;
  207. update t1 set col2='9' where col1='2';
  208. select * from t1;
  209. drop table t1;
  210. #
  211. # INSERT INTO BDB tables
  212. #
  213. create table t1 (a int not null , b int, primary key (a)) type = BDB;
  214. create table t2 (a int not null , b int, primary key (a)) type = myisam;
  215. insert into t1 VALUES (1,3) , (2,3), (3,3);
  216. select * from t1;
  217. insert into t2 select * from t1;
  218. select * from t2;
  219. delete from t1 where b = 3;
  220. select * from t1;
  221. insert into t1 select * from t2;
  222. select * from t1;
  223. select * from t2;
  224. drop table t1,t2;
  225. #
  226. # Search on unique key
  227. #
  228. CREATE TABLE t1 (
  229.   id int(11) NOT NULL auto_increment,
  230.   ggid varchar(32) binary DEFAULT '' NOT NULL,
  231.   email varchar(64) DEFAULT '' NOT NULL,
  232.   passwd varchar(32) binary DEFAULT '' NOT NULL,
  233.   PRIMARY KEY (id),
  234.   UNIQUE ggid (ggid)
  235. ) TYPE=BDB;
  236. insert into t1 (ggid,passwd) values ('test1','xxx');
  237. insert into t1 (ggid,passwd) values ('test2','yyy');
  238. -- error 1062
  239. insert into t1 (ggid,passwd) values ('test2','this will fail');
  240. -- error 1062
  241. insert into t1 (ggid,id) values ('this will fail',1);
  242. select * from t1 where ggid='test1';
  243. select * from t1 where passwd='xxx';
  244. select * from t1 where id=2;
  245. replace into t1 (ggid,id) values ('this will work',1);
  246. replace into t1 (ggid,passwd) values ('test2','this will work');
  247. -- error 1062
  248. update t1 set id=100,ggid='test2' where id=1;
  249. select * from t1;
  250. select * from t1 where id=1;
  251. select * from t1 where id=999;
  252. drop table t1;
  253. #
  254. # ORDER BY on not primary key
  255. #
  256. CREATE TABLE t1 (
  257.   user_name varchar(12),
  258.   password text,
  259.   subscribed char(1),
  260.   user_id int(11) DEFAULT '0' NOT NULL,
  261.   quota bigint(20),
  262.   weight double,
  263.   access_date date,
  264.   access_time time,
  265.   approved datetime,
  266.   dummy_primary_key int(11) NOT NULL auto_increment,
  267.   PRIMARY KEY (dummy_primary_key)
  268. ) TYPE=BDB;
  269. INSERT INTO t1 VALUES ('user_0','somepassword','N',0,0,0,'2000-09-07','23:06:59','2000-09-07 23:06:59',1);
  270. INSERT INTO t1 VALUES ('user_1','somepassword','Y',1,1,1,'2000-09-07','23:06:59','2000-09-07 23:06:59',2);
  271. INSERT INTO t1 VALUES ('user_2','somepassword','N',2,2,1.4142135623731,'2000-09-07','23:06:59','2000-09-07 23:06:59',3);
  272. INSERT INTO t1 VALUES ('user_3','somepassword','Y',3,3,1.7320508075689,'2000-09-07','23:06:59','2000-09-07 23:06:59',4);
  273. INSERT INTO t1 VALUES ('user_4','somepassword','N',4,4,2,'2000-09-07','23:06:59','2000-09-07 23:06:59',5);
  274. select  user_name, password , subscribed, user_id, quota, weight, access_date, access_time, approved, dummy_primary_key from t1 order by user_name;
  275. drop table t1;
  276. #
  277. # Testing of tables without primary keys
  278. #
  279. CREATE TABLE t1 (
  280.   id int(11) NOT NULL auto_increment,
  281.   parent_id int(11) DEFAULT '0' NOT NULL,
  282.   level tinyint(4) DEFAULT '0' NOT NULL,
  283.   KEY (id),
  284.   KEY parent_id (parent_id),
  285.   KEY level (level)
  286. ) type=bdb;
  287. INSERT INTO t1 VALUES (1,0,0),(3,1,1),(4,1,1),(8,2,2),(9,2,2),(17,3,2),(22,4,2),(24,4,2),(28,5,2),(29,5,2),(30,5,2),(31,6,2),(32,6,2),(33,6,2),(203,7,2),(202,7,2),(20,3,2),(157,0,0),(193,5,2),(40,7,2),(2,1,1),(15,2,2),(6,1,1),(34,6,2),(35,6,2),(16,3,2),(7,1,1),(36,7,2),(18,3,2),(26,5,2),(27,5,2),(183,4,2),(38,7,2),(25,5,2),(37,7,2),(21,4,2),(19,3,2),(5,1,1);
  288. INSERT INTO t1 values (179,5,2);
  289. update t1 set parent_id=parent_id+100;
  290. select * from t1 where parent_id=102;
  291. update t1 set id=id+1000;
  292. update t1 set id=1024 where id=1009; 
  293. select * from t1;
  294. update ignore t1 set id=id+1; # This will change all rows
  295. select * from t1;
  296. update ignore t1 set id=1023 where id=1010;
  297. select * from t1 where parent_id=102;
  298. explain select level from t1 where level=1;
  299. select level,id from t1 where level=1;
  300. select level,id,parent_id from t1 where level=1;
  301. select level,id from t1 where level=1 order by id;
  302. delete from t1 where level=1;
  303. select * from t1;
  304. drop table t1;
  305. #
  306. # Test of index only reads
  307. #
  308. CREATE TABLE t1 (
  309.    sca_code char(6) NOT NULL,
  310.    cat_code char(6) NOT NULL,
  311.    sca_desc varchar(50),
  312.    lan_code char(2) NOT NULL,
  313.    sca_pic varchar(100),
  314.    sca_sdesc varchar(50),
  315.    sca_sch_desc varchar(16),
  316.    PRIMARY KEY (sca_code, cat_code, lan_code),
  317.    INDEX sca_pic (sca_pic)
  318. ) type = bdb ;
  319. INSERT INTO t1 ( sca_code, cat_code, sca_desc, lan_code, sca_pic, sca_sdesc, sca_sch_desc) VALUES ( 'PD', 'J', 'PENDANT', 'EN', NULL, NULL, 'PENDANT'),( 'RI', 'J', 'RING', 'EN', NULL, NULL, 'RING'),( 'QQ', 'N', 'RING', 'EN', 'not null', NULL, 'RING');
  320. select count(*) from t1 where sca_code = 'PD';
  321. select count(*) from t1 where sca_code <= 'PD';
  322. select count(*) from t1 where sca_pic is null;
  323. alter table t1 drop index sca_pic, add index sca_pic (cat_code, sca_pic);
  324. select count(*) from t1 where sca_code='PD' and sca_pic is null;
  325. select count(*) from t1 where cat_code='E';
  326. alter table t1 drop index sca_pic, add index (sca_pic, cat_code);
  327. select count(*) from t1 where sca_code='PD' and sca_pic is null;
  328. select count(*) from t1 where sca_pic >= 'n';
  329. select sca_pic from t1 where sca_pic is null;
  330. update t1 set sca_pic="test" where sca_pic is null;
  331. delete from t1 where sca_code='pd';
  332. drop table t1;
  333. #
  334. # Test of opening table twice and timestamps
  335. #
  336. set @a:=now();
  337. CREATE TABLE t1 (a int not null, b timestamp not null, primary key (a)) type=bdb;
  338. insert into t1 (a) values(1),(2),(3);
  339. select t1.a from t1 natural join t1 as t2 where t1.b >= @a order by t1.a;
  340. update t1 set a=5 where a=1;
  341. select a from t1;
  342. drop table t1;
  343. #
  344. # Test flushing of berkeley DB logs
  345. #
  346. flush logs;
  347. #
  348. # Test key on blob with null values
  349. #
  350. create table t1 (b blob, i int, key (b(100)), key (i), key (i, b(20))) type=bdb;
  351. insert into t1 values ('this is a blob', 1), (null, -1), (null, null),("",1),("",2),("",3);
  352. select b from t1 where b = 'this is a blob';
  353. select * from t1 where b like 't%';
  354. select b, i from t1 where b is not null;
  355. select * from t1 where b is null and i > 0;
  356. select * from t1 where i is NULL;
  357. update t1 set b='updated' where i=1;
  358. select * from t1;
  359. drop table t1;
  360. #
  361. # Test with variable length primary key
  362. #
  363. create table t1 (a varchar(100) not null, primary key(a), b int not null) type=bdb;
  364. insert into t1 values("hello",1),("world",2);
  365. select * from t1 order by b desc;
  366. optimize table t1;
  367. show keys from t1;
  368. drop table t1;
  369. #
  370. # Test of bug in create index with NULL columns
  371. #
  372. create table t1 (i int, j int )TYPE=BDB;
  373. insert into t1 values (1,2);
  374. select * from t1 where i=1 and j=2;
  375. create index ax1 on t1 (i,j);
  376. select * from t1 where i=1 and j=2;
  377. drop table t1;
  378. #
  379. # Test of with CONST tables and TEXT columns
  380. # This gave a wrong result because the row information was freed too early
  381. #
  382. drop table if exists t1, t2, t3, t4, t5, t6, t7;
  383. create table t1
  384. (
  385. branch_id int auto_increment primary key,
  386. branch_name varchar(255) not null,
  387. branch_active int not null  default 1,
  388. unique  branch_name(branch_name),
  389. index branch_active(branch_active)
  390. ) type=bdb;
  391. drop table if exists t2 ;
  392. create table t2
  393. (
  394. target_id int auto_increment primary key,
  395. target_name varchar(255) not null,
  396. target_active int not null  default 1,
  397. unique target_name(target_name),
  398. index target_active(target_active)
  399. ) type=bdb;
  400. drop table if exists t3 ;
  401. create table t3
  402. (
  403. platform_id int auto_increment primary key,
  404. platform_name varchar(255) not null,
  405. platform_active int not null  default 1,
  406. unique platform_name(platform_name),
  407. index platform_active(platform_active)
  408. ) type=bdb;
  409. drop table if exists t4 ;
  410. create table t4
  411. (
  412. product_id int auto_increment primary key,
  413. product_name varchar(255) not null,
  414. version_file varchar(255) not null,
  415. product_active int not null  default 1,
  416. unique product_name(product_name),
  417. index product_active(product_active)
  418. ) type=bdb;
  419. drop table if exists t5 ;
  420. create table t5
  421. (
  422. product_file_id int auto_increment primary key,
  423. product_id int not null,
  424. file_name varchar(255) not null,
  425. /* cvs module used to find the file version */
  426. module_name varchar(255) not null,
  427. /* flag whether the file is still included in the product */
  428. file_included int not null default 1,
  429. unique product_file(product_id,file_name),
  430. index file_included(file_included)
  431. ) type=bdb;
  432. drop table if exists t6 ;
  433. create table t6
  434. (
  435. file_platform_id int auto_increment primary key,
  436. product_file_id int not null,
  437. platform_id int not null,
  438. branch_id int not null,
  439. /* filename in the build system */
  440. build_filename varchar(255) not null,
  441. /* default filename in the build archive */
  442. archive_filename varchar(255) not null,
  443. unique  file_platform(product_file_id,platform_id,branch_id)
  444. ) type=bdb;
  445. drop table if exists t8 ;
  446. create table t8
  447. (
  448. archive_id int auto_increment primary key,
  449. branch_id int not null,
  450. target_id int not null,
  451. platform_id int not null,
  452. product_id int not null,
  453. status_id int not null default 1,
  454. unique  archive(branch_id,target_id,platform_id,product_id),
  455. index status_id(status_id)
  456. ) type=bdb;
  457. drop table if exists t7 ;
  458. create table t7
  459. (
  460. build_id int auto_increment primary key,
  461. branch_id int not null,
  462. target_id int not null,
  463. build_number int not null,
  464. build_date date not null,
  465. /* build system tag, e.g. 'rmanight-022301-1779' */
  466. build_tag varchar(255) not null,
  467. /* path relative to the build archive root, e.g. 'current' */
  468. build_path text not null,
  469. unique  build(branch_id,target_id,build_number)
  470. ) type=bdb;
  471. insert into t1 (branch_name)
  472. values ('RealMedia');
  473. insert into t1 (branch_name)
  474. values ('RP8REV');
  475. insert into t1 (branch_name)
  476. values ('SERVER_8_0_GOLD');
  477. insert into t2 (target_name)
  478. values ('rmanight');
  479. insert into t2 (target_name)
  480. values ('playerall');
  481. insert into t2 (target_name)
  482. values ('servproxyall');
  483. insert into t3 (platform_name)
  484. values ('linux-2.0-libc6-i386');
  485. insert into t3 (platform_name)
  486. values ('win32-i386');
  487. insert into t4 (product_name, version_file)
  488. values ('realserver', 'servinst');
  489. insert into t4 (product_name, version_file)
  490. values ('realproxy', 'prxyinst');
  491. insert into t4 (product_name, version_file)
  492. values ('realplayer', 'playinst');
  493. insert into t4 (product_name, version_file)
  494. values ('plusplayer', 'plusinst');
  495. create temporary table tmp1
  496.         select branch_id, target_id, platform_id, product_id
  497.         from t1, t2, t3, t4 ;
  498. create temporary table tmp2 
  499.         select tmp1.branch_id, tmp1.target_id, tmp1.platform_id, tmp1.product_id 
  500.         from tmp1 left join t8 
  501.         using (branch_id,target_id,platform_id,product_id) 
  502.         where t8.archive_id is null ;
  503. insert into t8 
  504.         (branch_id, target_id, platform_id, product_id, status_id)
  505.         select branch_id, target_id, platform_id, product_id, 1
  506.         from tmp2 ;
  507. drop table tmp1 ;
  508. drop table tmp2 ;
  509. insert into t5 (product_id, file_name, module_name)
  510. values (1, 'servinst', 'server');
  511. insert into t5 (product_id, file_name, module_name)
  512. values (2, 'prxyinst', 'server');
  513. insert into t5 (product_id, file_name, module_name)
  514. values (3, 'playinst', 'rpapp');
  515. insert into t5 (product_id, file_name, module_name)
  516. values (4, 'plusinst', 'rpapp');
  517. insert into t6 
  518. (product_file_id,platform_id,branch_id,build_filename,archive_filename)
  519. values (1, 2, 3, 'servinst.exe', 'win32-servinst.exe');
  520. insert into t6 
  521. (product_file_id,platform_id,branch_id,build_filename,archive_filename)
  522. values (1, 1, 3, 'v80_linux-2.0-libc6-i386_servinst.bin', 'linux2-servinst.exe');
  523. insert into t6 
  524. (product_file_id,platform_id,branch_id,build_filename,archive_filename)
  525. values (3, 2, 2, 'playinst.exe', 'win32-playinst.exe');
  526. insert into t6 
  527. (product_file_id,platform_id,branch_id,build_filename,archive_filename)
  528. values (4, 2, 2, 'playinst.exe', 'win32-playinst.exe');
  529. insert into t7 
  530. (branch_id,target_id,build_number,build_tag,build_date,build_path)
  531. values (2, 2, 1071, 'playerall-022101-1071', '2001-02-21', 'current');
  532. insert into t7 
  533. (branch_id,target_id,build_number,build_tag,build_date,build_path)
  534. values (2, 2, 1072, 'playerall-022201-1072', '2001-02-22', 'current');
  535. insert into t7 
  536. (branch_id,target_id,build_number,build_tag,build_date,build_path)
  537. values (3, 3, 388, 'servproxyall-022201-388', '2001-02-22', 'current');
  538. insert into t7 
  539. (branch_id,target_id,build_number,build_tag,build_date,build_path)
  540. values (3, 3, 389, 'servproxyall-022301-389', '2001-02-23', 'current');
  541. insert into t7 
  542. (branch_id,target_id,build_number,build_tag,build_date,build_path)
  543. values (4, 4, 100, 'foo target-010101-100', '2001-01-01', 'current');
  544. update t8
  545. set status_id=2
  546. where branch_id=2 and target_id=2 and platform_id=2 and product_id=1;
  547. select t7.build_path
  548. from 
  549.     t1, 
  550.     t7, 
  551.     t2, 
  552.     t3, 
  553.     t4,
  554.     t5, 
  555.     t6
  556. where 
  557.     t7.branch_id = t1.branch_id and 
  558.     t7.target_id = t2.target_id and 
  559.     t5.product_id = t4.product_id and
  560.     t6.product_file_id = t5.product_file_id and
  561.     t6.platform_id = t3.platform_id and
  562.     t6.branch_id = t6.branch_id and
  563.     t7.build_id = 1 and
  564.     t4.product_id = 3 and
  565.     t5.file_name = 'playinst' and
  566.     t3.platform_id = 2;
  567. drop table t1, t2, t3, t4, t5, t6, t7, t8;
  568. #
  569. # Test with blob + tinyint key
  570. #
  571. CREATE TABLE t1 (
  572.   a tinytext NOT NULL,
  573.   b tinyint(3) unsigned NOT NULL default '0',
  574.   PRIMARY KEY (a(32),b)
  575. ) TYPE=BDB;
  576. INSERT INTO t1 VALUES ('a',1),('a',2);
  577. SELECT * FROM t1 WHERE a='a' AND b=2;
  578. SELECT * FROM t1 WHERE a='a' AND b in (2);
  579. SELECT * FROM t1 WHERE a='a' AND b in (1,2);
  580. drop table t1;
  581. #
  582. # Test min-max optimization
  583. #
  584. CREATE TABLE t1 (
  585.   a int3 unsigned NOT NULL,
  586.   b int1 unsigned NOT NULL,
  587.   UNIQUE (a, b)
  588. ) TYPE = BDB;
  589.  
  590. INSERT INTO t1 VALUES (1, 1);
  591. SELECT MIN(B),MAX(b) FROM t1 WHERE t1.a = 1;
  592. drop table t1;