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

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_bdb.inc
  2. #
  3. # Small basic test with ignore
  4. #
  5. --disable_warnings
  6. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8;
  7. --enable_warnings
  8. 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)) engine=bdb;
  9. insert into t1 (code, name) values (1, 'Tim'), (1, 'Monty'), (2, 'David'), (2, 'Erik'), (3, 'Sasha'), (3, 'Jeremy'), (4, 'Matt');
  10. select id, code, name from t1 order by id;
  11. update ignore t1 set id = 8, name = 'Sinisa' where id < 3;
  12. select id, code, name from t1 order by id;
  13. update ignore t1 set id = id + 10, name = 'Ralph' where id < 4;
  14. select id, code, name from t1 order by id;
  15. drop table t1;
  16. #
  17. # A bit bigger test
  18. #
  19. CREATE TABLE t1 (
  20.   id int(11) NOT NULL auto_increment,
  21.   parent_id int(11) DEFAULT '0' NOT NULL,
  22.   level tinyint(4) DEFAULT '0' NOT NULL,
  23.   PRIMARY KEY (id),
  24.   KEY parent_id (parent_id),
  25.   KEY level (level)
  26. ) engine=bdb;
  27. 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);
  28. update t1 set parent_id=parent_id+100;
  29. select * from t1 where parent_id=102;
  30. update t1 set id=id+1000;
  31. -- error 1062
  32. update t1 set id=1024 where id=1009; 
  33. select * from t1;
  34. update ignore t1 set id=id+1; # This will change all rows
  35. select * from t1;
  36. update ignore t1 set id=1023 where id=1010;
  37. select * from t1 where parent_id=102 order by parent_id,id;
  38. explain select level from t1 where level=1;
  39. explain select level,id from t1 where level=1;
  40. explain select level,id,parent_id from t1 where level=1;
  41. select level,id from t1 where level=1;
  42. select level,id,parent_id from t1 where level=1;
  43. optimize table t1;
  44. show keys from t1;
  45. drop table t1;
  46. #
  47. # Test replace
  48. #
  49. CREATE TABLE t1 (
  50.   gesuchnr int(11) DEFAULT '0' NOT NULL,
  51.   benutzer_id int(11) DEFAULT '0' NOT NULL,
  52.   PRIMARY KEY (gesuchnr,benutzer_id)
  53. ) engine=BDB;
  54. replace into t1 (gesuchnr,benutzer_id) values (2,1);
  55. replace into t1 (gesuchnr,benutzer_id) values (1,1);
  56. replace into t1 (gesuchnr,benutzer_id) values (1,1);
  57. select * from t1;
  58. drop table t1;
  59. # test for bug in replace with secondary key
  60. create table t1 (id int not null primary key, x int not null, key (x)) engine=bdb;
  61. insert into t1 (id, x) values (1, 1);
  62. replace into t1 (id, x) values (1, 2);
  63. select * from t1;
  64. drop table t1;
  65. #
  66. # test delete using hidden_primary_key
  67. #
  68. create table t1 (a int) engine=bdb;
  69. insert into t1 values (1), (2);
  70. optimize table t1;
  71. delete from t1 where a = 1;
  72. select * from t1;
  73. check table t1;
  74. drop table t1;
  75. create table t1 (a int,b varchar(20)) engine=bdb;
  76. insert into t1 values (1,""), (2,"testing");
  77. delete from t1 where a = 1;
  78. select * from t1;
  79. create index skr on t1 (a);
  80. insert into t1 values (3,""), (4,"testing");
  81. analyze table t1;
  82. show keys from t1;
  83. drop table t1;
  84. # Test of reading on secondary key with may be null
  85. create table t1 (a int,b varchar(20),key(a)) engine=bdb;
  86. insert into t1 values (1,""), (2,"testing");
  87. select * from t1 where a = 1;
  88. drop table t1;
  89. #
  90. # Test auto_increment on sub key
  91. #
  92. create table t1 (a char(10) not null, b int not null auto_increment, primary key(a,b)) engine=BDB;
  93. insert into t1 values ("a",1),("b",2),("a",2),("c",1);
  94. insert into t1 values ("a",NULL),("b",NULL),("c",NULL),("e",NULL);
  95. insert into t1 (a) values ("a"),("b"),("c"),("d");
  96. insert into t1 (a) values ('k'),('d');
  97. insert into t1 (a) values ("a");
  98. insert into t1 values ("d",last_insert_id());
  99. select * from t1;
  100. flush tables;
  101. select count(*) from t1;
  102. drop table t1;
  103. #
  104. # Test rollback
  105. #
  106. create table t1 (n int not null primary key) engine=bdb;
  107. set autocommit=0;
  108. insert into t1 values (4);
  109. rollback;
  110. select n, "after rollback" from t1;
  111. insert into t1 values (4);
  112. commit;
  113. select n, "after commit" from t1;
  114. commit;
  115. insert into t1 values (5);
  116. -- error 1062
  117. insert into t1 values (4);
  118. commit;
  119. select n, "after commit" from t1;
  120. set autocommit=1;
  121. insert into t1 values (6);
  122. -- error 1062
  123. insert into t1 values (4);
  124. select n from t1;
  125. # nop
  126. rollback;
  127. drop table t1;
  128. #
  129. # Testing transactions
  130. #
  131. create table t1 ( id int NOT NULL PRIMARY KEY, nom varchar(64)) engine=BDB;
  132. begin;
  133. insert into t1 values(1,'hamdouni');
  134. select id as afterbegin_id,nom as afterbegin_nom from t1;
  135. rollback;
  136. select id as afterrollback_id,nom as afterrollback_nom from t1;
  137. set autocommit=0;
  138. insert into t1 values(2,'mysql');
  139. select id as afterautocommit0_id,nom as afterautocommit0_nom from t1;
  140. rollback;
  141. select id as afterrollback_id,nom as afterrollback_nom from t1;
  142. set autocommit=1;
  143. drop table t1;
  144. #
  145. # Simple not autocommit test
  146. CREATE TABLE t1 (id char(8) not null primary key, val int not null) engine=bdb;
  147. insert into t1 values ('pippo', 12);
  148. -- error 1062
  149. insert into t1 values ('pippo', 12); # Gives error
  150. delete from t1;
  151. delete from t1 where id = 'pippo';
  152. select * from t1;
  153. insert into t1 values ('pippo', 12);
  154. set autocommit=0;
  155. delete from t1;
  156. rollback;
  157. select * from t1;
  158. delete from t1;
  159. commit;
  160. select * from t1;
  161. drop table t1;
  162. set autocommit=1;
  163. #
  164. # The following simple tests failed at some point
  165. #
  166. CREATE TABLE t1 (ID INTEGER NOT NULL PRIMARY KEY, NAME VARCHAR(64)) ENGINE=BDB;
  167. INSERT INTO t1 VALUES (1, 'Jochen');
  168. select * from t1;
  169. drop table t1;
  170. CREATE TABLE t1 ( _userid VARCHAR(60) NOT NULL PRIMARY KEY) ENGINE=BDB;
  171. set autocommit=0;
  172. INSERT INTO t1  SET _userid='marc@anyware.co.uk';
  173. COMMIT;
  174. SELECT * FROM t1;
  175. SELECT _userid FROM t1 WHERE _userid='marc@anyware.co.uk';
  176. drop table t1;
  177. set autocommit=1;
  178. #
  179. # Test when reading on part of unique key
  180. #
  181. CREATE TABLE t1 (
  182.   user_id int(10) DEFAULT '0' NOT NULL,
  183.   name varchar(100),
  184.   phone varchar(100),
  185.   ref_email varchar(100) DEFAULT '' NOT NULL,
  186.   detail varchar(200),
  187.   PRIMARY KEY (user_id,ref_email)
  188. )engine=bdb;
  189. 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');
  190. select * from t1 where user_id=10292;
  191. INSERT INTO t1 VALUES (10291,'sanjeev','29153373','sansh777@hotmail.com','xxx'),(10293,'shirish','2333604','shirish@yahoo.com','ddsds');
  192. select * from t1 where user_id=10292;
  193. select * from t1 where user_id>=10292;
  194. select * from t1 where user_id>10292;
  195. select * from t1 where user_id<10292;
  196. drop table t1;
  197. #
  198. # Test that keys are created in right order
  199. #
  200. CREATE TABLE t1 (a int not null, b int not null,c int not null,
  201. key(a),primary key(a,b), unique(c),key(a),unique(b));
  202. show index from t1;
  203. drop table t1;
  204. #
  205. # Test of ALTER TABLE and BDB tables
  206. #
  207. create table t1 (col1 int not null, col2 char(4) not null, primary key(col1));
  208. alter table t1 engine=BDB;
  209. insert into t1 values ('1','1'),('5','2'),('2','3'),('3','4'),('4','4');
  210. select * from t1;
  211. update t1 set col2='7' where col1='4';
  212. select * from t1;
  213. alter table t1 add co3 int not null;
  214. select * from t1;
  215. update t1 set col2='9' where col1='2';
  216. select * from t1;
  217. drop table t1;
  218. #
  219. # INSERT INTO BDB tables
  220. #
  221. create table t1 (a int not null , b int, primary key (a)) engine = BDB;
  222. create table t2 (a int not null , b int, primary key (a)) engine = myisam;
  223. insert into t1 VALUES (1,3) , (2,3), (3,3);
  224. select * from t1;
  225. insert into t2 select * from t1;
  226. select * from t2;
  227. delete from t1 where b = 3;
  228. select * from t1;
  229. insert into t1 select * from t2;
  230. select * from t1;
  231. select * from t2;
  232. drop table t1,t2;
  233. #
  234. # Search on unique key
  235. #
  236. CREATE TABLE t1 (
  237.   id int(11) NOT NULL auto_increment,
  238.   ggid varchar(32) binary DEFAULT '' NOT NULL,
  239.   email varchar(64) DEFAULT '' NOT NULL,
  240.   passwd varchar(32) binary DEFAULT '' NOT NULL,
  241.   PRIMARY KEY (id),
  242.   UNIQUE ggid (ggid)
  243. ) ENGINE=BDB;
  244. insert into t1 (ggid,passwd) values ('test1','xxx');
  245. insert into t1 (ggid,passwd) values ('test2','yyy');
  246. -- error 1062
  247. insert into t1 (ggid,passwd) values ('test2','this will fail');
  248. -- error 1062
  249. insert into t1 (ggid,id) values ('this will fail',1);
  250. select * from t1 where ggid='test1';
  251. select * from t1 where passwd='xxx';
  252. select * from t1 where id=2;
  253. replace into t1 (ggid,id) values ('this will work',1);
  254. replace into t1 (ggid,passwd) values ('test2','this will work');
  255. -- error 1062
  256. update t1 set id=100,ggid='test2' where id=1;
  257. select * from t1;
  258. select * from t1 where id=1;
  259. select * from t1 where id=999;
  260. drop table t1;
  261. #
  262. # ORDER BY on not primary key
  263. #
  264. CREATE TABLE t1 (
  265.   user_name varchar(12),
  266.   password text,
  267.   subscribed char(1),
  268.   user_id int(11) DEFAULT '0' NOT NULL,
  269.   quota bigint(20),
  270.   weight double,
  271.   access_date date,
  272.   access_time time,
  273.   approved datetime,
  274.   dummy_primary_key int(11) NOT NULL auto_increment,
  275.   PRIMARY KEY (dummy_primary_key)
  276. ) ENGINE=BDB;
  277. INSERT INTO t1 VALUES ('user_0','somepassword','N',0,0,0,'2000-09-07','23:06:59','2000-09-07 23:06:59',1);
  278. INSERT INTO t1 VALUES ('user_1','somepassword','Y',1,1,1,'2000-09-07','23:06:59','2000-09-07 23:06:59',2);
  279. 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);
  280. 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);
  281. INSERT INTO t1 VALUES ('user_4','somepassword','N',4,4,2,'2000-09-07','23:06:59','2000-09-07 23:06:59',5);
  282. select  user_name, password , subscribed, user_id, quota, weight, access_date, access_time, approved, dummy_primary_key from t1 order by user_name;
  283. drop table t1;
  284. #
  285. # Testing of tables without primary keys
  286. #
  287. CREATE TABLE t1 (
  288.   id int(11) NOT NULL auto_increment,
  289.   parent_id int(11) DEFAULT '0' NOT NULL,
  290.   level tinyint(4) DEFAULT '0' NOT NULL,
  291.   KEY (id),
  292.   KEY parent_id (parent_id),
  293.   KEY level (level)
  294. ) engine=bdb;
  295. 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);
  296. INSERT INTO t1 values (179,5,2);
  297. update t1 set parent_id=parent_id+100;
  298. select * from t1 where parent_id=102;
  299. update t1 set id=id+1000;
  300. update t1 set id=1024 where id=1009; 
  301. select * from t1;
  302. update ignore t1 set id=id+1; # This will change all rows
  303. select * from t1;
  304. update ignore t1 set id=1023 where id=1010;
  305. select * from t1 where parent_id=102;
  306. explain select level from t1 where level=1;
  307. select level,id from t1 where level=1;
  308. select level,id,parent_id from t1 where level=1;
  309. select level,id from t1 where level=1 order by id;
  310. delete from t1 where level=1;
  311. select * from t1;
  312. drop table t1;
  313. #
  314. # Test of index only reads
  315. #
  316. CREATE TABLE t1 (
  317.    sca_code char(6) NOT NULL,
  318.    cat_code char(6) NOT NULL,
  319.    sca_desc varchar(50),
  320.    lan_code char(2) NOT NULL,
  321.    sca_pic varchar(100),
  322.    sca_sdesc varchar(50),
  323.    sca_sch_desc varchar(16),
  324.    PRIMARY KEY (sca_code, cat_code, lan_code),
  325.    INDEX sca_pic (sca_pic)
  326. ) engine = bdb ;
  327. 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');
  328. select count(*) from t1 where sca_code = 'PD';
  329. select count(*) from t1 where sca_code <= 'PD';
  330. select count(*) from t1 where sca_pic is null;
  331. alter table t1 drop index sca_pic, add index sca_pic (cat_code, sca_pic);
  332. select count(*) from t1 where sca_code='PD' and sca_pic is null;
  333. select count(*) from t1 where cat_code='E';
  334. alter table t1 drop index sca_pic, add index (sca_pic, cat_code);
  335. select count(*) from t1 where sca_code='PD' and sca_pic is null;
  336. select count(*) from t1 where sca_pic >= 'n';
  337. select sca_pic from t1 where sca_pic is null;
  338. update t1 set sca_pic="test" where sca_pic is null;
  339. delete from t1 where sca_code='pd';
  340. drop table t1;
  341. #
  342. # Test of opening table twice and timestamps
  343. #
  344. set @a:=now();
  345. CREATE TABLE t1 (a int not null, b timestamp not null, primary key (a)) engine=bdb;
  346. insert into t1 (a) values(1),(2),(3);
  347. select t1.a from t1 natural join t1 as t2 where t1.b >= @a order by t1.a;
  348. update t1 set a=5 where a=1;
  349. select a from t1;
  350. drop table t1;
  351. #
  352. # Test flushing of berkeley DB logs
  353. #
  354. flush logs;
  355. #
  356. # Test key on blob with null values
  357. #
  358. create table t1 (b blob, i int, key (b(100)), key (i), key (i, b(20))) engine=bdb;
  359. insert into t1 values ('this is a blob', 1), (null, -1), (null, null),("",1),("",2),("",3);
  360. select b from t1 where b = 'this is a blob';
  361. select * from t1 where b like 't%';
  362. select b, i from t1 where b is not null;
  363. select * from t1 where b is null and i > 0;
  364. select * from t1 where i is NULL;
  365. update t1 set b='updated' where i=1;
  366. select * from t1;
  367. drop table t1;
  368. #
  369. # Test with variable length primary key
  370. #
  371. create table t1 (a varchar(100) not null, primary key(a), b int not null) engine=bdb;
  372. insert into t1 values("hello",1),("world",2);
  373. select * from t1 order by b desc;
  374. optimize table t1;
  375. show keys from t1;
  376. drop table t1;
  377. #
  378. # Test of bug in create index with NULL columns
  379. #
  380. create table t1 (i int, j int )ENGINE=BDB;
  381. insert into t1 values (1,2);
  382. select * from t1 where i=1 and j=2;
  383. create index ax1 on t1 (i,j);
  384. select * from t1 where i=1 and j=2;
  385. drop table t1;
  386. #
  387. # Test of with CONST tables and TEXT columns
  388. # This gave a wrong result because the row information was freed too early
  389. #
  390. create table t1
  391. (
  392. branch_id int auto_increment primary key,
  393. branch_name varchar(255) not null,
  394. branch_active int not null  default 1,
  395. unique  branch_name(branch_name),
  396. index branch_active(branch_active)
  397. ) engine=bdb;
  398. create table t2
  399. (
  400. target_id int auto_increment primary key,
  401. target_name varchar(255) not null,
  402. target_active int not null  default 1,
  403. unique target_name(target_name),
  404. index target_active(target_active)
  405. ) engine=bdb;
  406. create table t3
  407. (
  408. platform_id int auto_increment primary key,
  409. platform_name varchar(255) not null,
  410. platform_active int not null  default 1,
  411. unique platform_name(platform_name),
  412. index platform_active(platform_active)
  413. ) engine=bdb;
  414. create table t4
  415. (
  416. product_id int auto_increment primary key,
  417. product_name varchar(255) not null,
  418. version_file varchar(255) not null,
  419. product_active int not null  default 1,
  420. unique product_name(product_name),
  421. index product_active(product_active)
  422. ) engine=bdb;
  423. create table t5
  424. (
  425. product_file_id int auto_increment primary key,
  426. product_id int not null,
  427. file_name varchar(255) not null,
  428. /* cvs module used to find the file version */
  429. module_name varchar(255) not null,
  430. /* flag whether the file is still included in the product */
  431. file_included int not null default 1,
  432. unique product_file(product_id,file_name),
  433. index file_included(file_included)
  434. ) engine=bdb;
  435. create table t6
  436. (
  437. file_platform_id int auto_increment primary key,
  438. product_file_id int not null,
  439. platform_id int not null,
  440. branch_id int not null,
  441. /* filename in the build system */
  442. build_filename varchar(255) not null,
  443. /* default filename in the build archive */
  444. archive_filename varchar(255) not null,
  445. unique  file_platform(product_file_id,platform_id,branch_id)
  446. ) engine=bdb;
  447. create table t8
  448. (
  449. archive_id int auto_increment primary key,
  450. branch_id int not null,
  451. target_id int not null,
  452. platform_id int not null,
  453. product_id int not null,
  454. status_id int not null default 1,
  455. unique  archive(branch_id,target_id,platform_id,product_id),
  456. index status_id(status_id)
  457. ) engine=bdb;
  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. ) engine=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. ) ENGINE=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. ) ENGINE = 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;
  593. #
  594. # Test problem with BDB and lock tables with duplicate write.
  595. #
  596. create table t1 (id int NOT NULL,id2 int NOT NULL,id3 int NOT NULL,dummy1 char(30),primary key (id,id2),index index_id3 (id3)) engine=bdb;
  597. insert into t1 values (0,0,0,'ABCDEFGHIJ'),(2,2,2,'BCDEFGHIJK'),(1,1,1,'CDEFGHIJKL');
  598. LOCK TABLES t1 WRITE;
  599. --error 1062
  600. insert into t1 values (99,1,2,'D'),(1,1,2,'D');
  601. select id from t1;
  602. select id from t1;
  603. UNLOCK TABLES;
  604. DROP TABLE t1;
  605. create table t1 (id int NOT NULL,id2 int NOT NULL,id3 int NOT NULL,dummy1 char(30),primary key (id,id2),index index_id3 (id3)) engine=bdb;
  606. insert into t1 values (0,0,0,'ABCDEFGHIJ'),(2,2,2,'BCDEFGHIJK'),(1,1,1,'CDEFGHIJKL');
  607. LOCK TABLES t1 WRITE;
  608. begin;
  609. --error 1062
  610. insert into t1 values (99,1,2,'D'),(1,1,2,'D');
  611. select id from t1;
  612. insert ignore into t1 values (100,1,2,'D'),(1,1,99,'D');
  613. commit;
  614. select id,id3 from t1;
  615. UNLOCK TABLES;
  616. DROP TABLE t1;
  617. #
  618. # Test with empty tables (crashed with lock error)
  619. #
  620. CREATE TABLE t1 (SYAIN_NO char(5) NOT NULL default '', KINMU_DATE char(6) NOT NULL default '', PRIMARY KEY  (SYAIN_NO,KINMU_DATE)) ENGINE=BerkeleyDB;
  621. CREATE TABLE t2 ( SYAIN_NO char(5) NOT NULL default '',STR_DATE char(8) NOT NULL default '',PRIMARY KEY  (SYAIN_NO,STR_DATE) ) ENGINE=BerkeleyDB;
  622. select T1.KINMU_DATE from t1 T1 ,t2 T2 where  T1.SYAIN_NO = '12345' and T1.KINMU_DATE = '200106' and T2.SYAIN_NO = T1.SYAIN_NO;
  623. select T1.KINMU_DATE from t1 T1 ,t2 T2 where  T1.SYAIN_NO = '12345' and T1.KINMU_DATE = '200106' and T2.SYAIN_NO = T1.SYAIN_NO;
  624. DROP TABLE t1,t2;
  625. #
  626. # Test problem with joining table to itself on a multi-part unique key
  627. #
  628. create table t1 (a int(11) not null, b int(11) not null, unique (a,b)) engine=bdb;
  629. insert into t1 values (1,1), (1,2);
  630. select * from t1 where a = 1;
  631. select t1.*, t2.* from t1, t1 t2 where t1.a = t2.a and t2.a = 1;
  632. select * from t1 where a = 1;
  633. drop table t1;
  634. #
  635. # This caused a deadlock in BDB internal locks
  636. #
  637. create table t1 (id int NOT NULL,id2 int NOT NULL,id3 int NOT NULL,dummy1 char(30),primary key (id,id2),index index_id3 (id3)) engine=bdb;
  638. insert into t1 values (0,0,0,'ABCDEFGHIJ');
  639. create table t2 (id int NOT NULL,primary key (id)) engine=bdb;
  640. LOCK TABLES t1 WRITE, t2 WRITE;
  641. insert into t2 values(1);
  642. SELECT t1.* FROM t1 WHERE id IN (1);
  643. SELECT t1.* FROM t2 left outer join t1 on (t1.id=t2.id);
  644. delete from t1 where id3 >= 0 and id3 <= 0;
  645. drop table t1,t2;
  646. #
  647. # Test problems with NULL
  648. #
  649. CREATE TABLE t1 (i varchar(48) NOT NULL default '', p varchar(255) default NULL,s varchar(48) NOT NULL default '', PRIMARY KEY  (i), UNIQUE(p,s)) ENGINE=BDB;
  650. INSERT INTO t1 VALUES ('00000000-e6c4ddeaa6-003b8-83458387','programs/xxxxxxxx.wmv','00000000-e6c4ddeb32-003bc-83458387');
  651. SELECT * FROM t1 WHERE p='programs/xxxxxxxx.wmv';
  652. drop table t1;
  653. #
  654. # Test problem which gave error 'Can't find record in 't1''
  655. #
  656. CREATE TABLE t1 ( STR_DATE varchar(8) NOT NULL default '',INFO_NOTE varchar(200) default NULL,PRIMARY KEY  (STR_DATE) ) ENGINE=BerkeleyDB;
  657. select INFO_NOTE from t1 where STR_DATE = '20010610';
  658. select INFO_NOTE from t1 where STR_DATE < '20010610';
  659. select INFO_NOTE from t1 where STR_DATE > '20010610';
  660. drop table t1;
  661. #
  662. # Test problem with multi table delete which quickly shows up with bdb tables.
  663. #
  664. create table t1 (a int not null, b int, primary key (a)) engine =bdb;
  665. create table t2 (a int not null, b int, primary key (a)) engine =bdb;
  666. insert into t1 values (2, 3),(1, 7),(10, 7);
  667. insert into t2 values (2, 3),(1, 7),(10, 7);
  668. select * from t1;
  669. select * from t2;
  670. delete t1, t2 from t1, t2 where t1.a = t2.a;
  671. select * from t1;
  672. select * from t2;
  673. select * from t2;
  674. drop table t1,t2;
  675. #
  676. # The bug #971
  677. #
  678. create table t1  (x int not null, index(x)) engine=bdb;
  679. insert into t1 values (1), (2), (3), (4), (5), (6), (7), (8), (9), (10);
  680. select * from t1 where x <= 10 and x >= 7;
  681. select * from t1 where x <= 10 and x >= 7 order by x;
  682. select * from t1 where x <= 10 and x >= 7 order by x desc;
  683. select * from t1 where x <= 8 and x >= 5 order by x desc;
  684. select * from t1 where x < 8 and x > 5 order by x desc;
  685. drop table t1;
  686. #
  687. # Test of multi-table-updates (bug #1980).
  688. #
  689. create table t1 ( c char(8) not null ) engine=bdb;
  690. insert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9');
  691. insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F');
  692. alter table t1 add b char(8) not null;
  693. alter table t1 add a char(8) not null;
  694. alter table t1 add primary key (a,b,c);
  695. update t1 set a=c, b=c;
  696. create table t2 (c char(8) not null, b char(8) not null, a char(8) not null, primary key(a,b,c)) engine=bdb;
  697. insert into t2 select * from t1;
  698. delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;
  699. drop table t1,t2;
  700. #
  701. # Test index only read (Bug #2509)
  702. #
  703. create table t1 (a char(10), key(a), b int not null, key(b)) engine=bdb;
  704. insert into t1 values ('a',1),('A',2);
  705. explain select a from t1;
  706. select a from t1;
  707. explain select b from t1;
  708. select b from t1;
  709. alter table t1 modify a char(10) binary;
  710. explain select a from t1;
  711. select a from t1;
  712. drop table t1;
  713. #
  714. # bug#2686 - index_merge select on BerkeleyDB table with varchar PK causes mysqld to crash
  715. #
  716. create table t1(
  717.   pk1 text not null, pk2 text not null, pk3 char(4),
  718.   key1 int, key2 int,
  719.   primary key(pk1(4), pk2(4), pk3), key(key1), key(key2)
  720. ) engine=bdb;
  721. insert into t1 values (concat('aaa-', repeat('A', 4000)),
  722.   concat('eee-', repeat('e', 4000)), 'a++a', 1, 1);
  723. insert into t1 values (concat('bbb-', repeat('B', 4000)),
  724.   concat('ggg-', repeat('G', 4000)), 'b++b', 1, 1);
  725. select substring(pk1, 1, 4), substring(pk1, 4001),
  726.        substring(pk2, 1, 4), substring(pk2, 4001), pk3, key1, key2
  727.        from t1 force index(key1, key2) where key1 < 3 or key2 < 3;
  728. drop table t1;
  729. #
  730. # bug#2688 - Wrong index_merge query results for BDB table with variable length primary key
  731. #
  732. create table t1 (
  733.   pk1 varchar(8) not null default '',
  734.   pk2 varchar(4) not null default '',
  735.   key1 int(11) default null,
  736.   key2 int(11) default null,
  737.   primary key  (pk1,pk2),
  738.   key key1 (key1),
  739.   key key2 (key2)) engine=bdb;
  740. insert into t1 values ('','empt',2,2),  ('a','a--a',2,2),
  741.   ('bb','b--b',2,2),  ('ccc','c--c',2,2),  ('dddd','d--d',2,2);
  742. select * from t1 force index(key1, key2) where key1 < 3 or key2 < 3;
  743. drop table t1;
  744. #
  745. # Bug #4000: problem with active cursor.
  746. #
  747. set autocommit=0;
  748. create table t1(b varchar(30)) engine=bdb;
  749. insert into t1 values ('one');
  750. commit;
  751. select b FROM t1 outer_table where
  752. exists (select 'two' from t1 where 'two' = outer_table.b);
  753. drop table t1;
  754. set autocommit=1;
  755. #
  756. # Bug #4089: subselect and open cursor.
  757. #
  758. create table t1(a int primary key, b varchar(30)) engine=bdb;
  759. insert into t1 values (1,'one'), (2,'two'), (3,'three'), (4,'four');
  760. create table t2 like t1;
  761. insert t2 select * from t1;
  762. select a from t1 where a in (select a from t2);
  763. delete from t2;
  764. insert into t2 (a, b)
  765.   select a, b from t1 where (a, b) in (select a, b from t1);
  766. select * from t2;
  767. drop table t1, t2;
  768. #
  769. # Bug #4304: TRUNCATE <table of type BDB> , wrong result
  770. #
  771. create table t1 (a int, b varchar(30), primary key(a)) engine = bdb;
  772. insert into t1 values (1,'one');
  773. commit;
  774. truncate t1;
  775. select * from t1;
  776. drop table t1;
  777. #
  778. # Check that BDB works fine with a string which is
  779. # longer than 255 bytes for multibyte characters.
  780. #
  781. SET NAMES utf8;
  782. create table t1 (a varchar(255) character set utf8) engine=bdb;
  783. set @a:= convert(repeat(_latin1 0xFF, 255) using utf8);
  784. insert into t1 values (@a);
  785. select a, length(a), char_length(a) from t1;
  786. drop table t1;
  787. SET NAMES latin1;
  788. #
  789. # Bug #5832 SELECT doesn't return records in some cases
  790. #
  791. CREATE TABLE t1 (
  792.     id       int unsigned NOT NULL auto_increment,
  793.     list_id  smallint unsigned NOT NULL,
  794.     term     TEXT NOT NULL,
  795.     PRIMARY KEY(id),
  796.     INDEX(list_id, term(4))
  797. ) ENGINE=BDB CHARSET=utf8;
  798. INSERT INTO t1 SET list_id = 1, term = "letterc";
  799. INSERT INTO t1 SET list_id = 1, term = "letterb";
  800. INSERT INTO t1 SET list_id = 1, term = "lettera";
  801. INSERT INTO t1 SET list_id = 1, term = "letterd";
  802. SELECT id FROM t1 WHERE (list_id = 1) AND (term = "letterc");
  803. SELECT id FROM t1 WHERE (list_id = 1) AND (term = "letterb");
  804. SELECT id FROM t1 WHERE (list_id = 1) AND (term = "lettera");
  805. SELECT id FROM t1 WHERE (list_id = 1) AND (term = "letterd");
  806. DROP TABLE t1;
  807. # End of 4.1 tests