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

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_innobase.inc
  2. #
  3. # Small basic test with ignore
  4. #
  5. drop table if exists t1,t2;
  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=innobase;
  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=innobase;
  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,1022
  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=innobase;
  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=innobase;
  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=innobase;
  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=innobase;
  78. insert into t1 values (1,""), (2,"testing");
  79. select * from t1 where a = 1;
  80. drop table t1;
  81. #
  82. # Test rollback
  83. #
  84. create table t1 (n int not null primary key) type=innobase;
  85. set autocommit=0;
  86. insert into t1 values (4);
  87. rollback;
  88. select n, "after rollback" from t1;
  89. insert into t1 values (4);
  90. commit;
  91. select n, "after commit" from t1;
  92. commit;
  93. insert into t1 values (5);
  94. -- error 1062
  95. insert into t1 values (4);
  96. commit;
  97. select n, "after commit" from t1;
  98. set autocommit=1;
  99. insert into t1 values (6);
  100. -- error 1062
  101. insert into t1 values (4);
  102. select n from t1;
  103. # nop
  104. rollback;
  105. drop table t1;
  106. #
  107. # Testing transactions
  108. #
  109. create table t1 ( id int NOT NULL PRIMARY KEY, nom varchar(64)) type=innobase;
  110. begin;
  111. insert into t1 values(1,'hamdouni');
  112. select id as afterbegin_id,nom as afterbegin_nom from t1;
  113. rollback;
  114. select id as afterrollback_id,nom as afterrollback_nom from t1;
  115. set autocommit=0;
  116. insert into t1 values(2,'mysql');
  117. select id as afterautocommit0_id,nom as afterautocommit0_nom from t1;
  118. rollback;
  119. select id as afterrollback_id,nom as afterrollback_nom from t1;
  120. set autocommit=1;
  121. drop table t1;
  122. #
  123. # Simple not autocommit test
  124. CREATE TABLE t1 (id char(8) not null primary key, val int not null) type=innobase;
  125. insert into t1 values ('pippo', 12);
  126. -- error 1062
  127. insert into t1 values ('pippo', 12); # Gives error
  128. delete from t1;
  129. delete from t1 where id = 'pippo';
  130. select * from t1;
  131. insert into t1 values ('pippo', 12);
  132. set autocommit=0;
  133. delete from t1;
  134. rollback;
  135. select * from t1;
  136. delete from t1;
  137. commit;
  138. select * from t1;
  139. drop table t1;
  140. set autocommit=1;
  141. #
  142. # The following simple tests failed at some point
  143. #
  144. CREATE TABLE t1 (ID INTEGER NOT NULL PRIMARY KEY, NAME VARCHAR(64)) TYPE=innobase;
  145. INSERT INTO t1 VALUES (1, 'Jochen');
  146. select * from t1;
  147. drop table t1;
  148. CREATE TABLE t1 ( _userid VARCHAR(60) NOT NULL PRIMARY KEY) TYPE=innobase;
  149. set autocommit=0;
  150. INSERT INTO t1  SET _userid='marc@anyware.co.uk';
  151. COMMIT;
  152. SELECT * FROM t1;
  153. SELECT _userid FROM t1 WHERE _userid='marc@anyware.co.uk';
  154. drop table t1;
  155. set autocommit=1;
  156. #
  157. # Test when reading on part of unique key
  158. #
  159. CREATE TABLE t1 (
  160.   user_id int(10) DEFAULT '0' NOT NULL,
  161.   name varchar(100),
  162.   phone varchar(100),
  163.   ref_email varchar(100) DEFAULT '' NOT NULL,
  164.   detail varchar(200),
  165.   PRIMARY KEY (user_id,ref_email)
  166. )type=innobase;
  167. 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');
  168. select * from t1 where user_id=10292;
  169. INSERT INTO t1 VALUES (10291,'sanjeev','29153373','sansh777@hotmail.com','xxx'),(10293,'shirish','2333604','shirish@yahoo.com','ddsds');
  170. select * from t1 where user_id=10292;
  171. select * from t1 where user_id>=10292;
  172. select * from t1 where user_id>10292;
  173. select * from t1 where user_id<10292;
  174. drop table t1;
  175. #
  176. # Test that keys are created in right order
  177. #
  178. CREATE TABLE t1 (a int not null, b int not null,c int not null,
  179. key(a),primary key(a,b), unique(c),key(a),unique(b));
  180. show index from t1;
  181. drop table t1;
  182. #
  183. # Test of ALTER TABLE and innobase tables
  184. #
  185. create table t1 (col1 int not null, col2 char(4) not null, primary key(col1));
  186. alter table t1 type=innobase;
  187. insert into t1 values ('1','1'),('5','2'),('2','3'),('3','4'),('4','4');
  188. select * from t1;
  189. update t1 set col2='7' where col1='4';
  190. select * from t1;
  191. alter table t1 add co3 int not null;
  192. select * from t1;
  193. update t1 set col2='9' where col1='2';
  194. select * from t1;
  195. drop table t1;
  196. #
  197. # INSERT INTO innobase tables
  198. #
  199. create table t1 (a int not null , b int, primary key (a)) type = innobase;
  200. create table t2 (a int not null , b int, primary key (a)) type = myisam;
  201. insert into t1 VALUES (1,3) , (2,3), (3,3);
  202. select * from t1;
  203. insert into t2 select * from t1;
  204. select * from t2;
  205. delete from t1 where b = 3;
  206. select * from t1;
  207. insert into t1 select * from t2;
  208. select * from t1;
  209. select * from t2;
  210. drop table t1,t2;
  211. #
  212. # Search on unique key
  213. #
  214. CREATE TABLE t1 (
  215.   id int(11) NOT NULL auto_increment,
  216.   ggid varchar(32) binary DEFAULT '' NOT NULL,
  217.   email varchar(64) DEFAULT '' NOT NULL,
  218.   passwd varchar(32) binary DEFAULT '' NOT NULL,
  219.   PRIMARY KEY (id),
  220.   UNIQUE ggid (ggid)
  221. ) TYPE=innobase;
  222. insert into t1 (ggid,passwd) values ('test1','xxx');
  223. insert into t1 (ggid,passwd) values ('test2','yyy');
  224. -- error 1062
  225. insert into t1 (ggid,passwd) values ('test2','this will fail');
  226. -- error 1062
  227. insert into t1 (ggid,id) values ('this will fail',1);
  228. select * from t1 where ggid='test1';
  229. select * from t1 where passwd='xxx';
  230. select * from t1 where id=2;
  231. replace into t1 (ggid,id) values ('this will work',1);
  232. replace into t1 (ggid,passwd) values ('test2','this will work');
  233. -- error 1062
  234. update t1 set id=100,ggid='test2' where id=1;
  235. select * from t1;
  236. select * from t1 where id=1;
  237. select * from t1 where id=999;
  238. drop table t1;
  239. #
  240. # ORDER BY on not primary key
  241. #
  242. CREATE TABLE t1 (
  243.   user_name varchar(12),
  244.   password text,
  245.   subscribed char(1),
  246.   user_id int(11) DEFAULT '0' NOT NULL,
  247.   quota bigint(20),
  248.   weight double,
  249.   access_date date,
  250.   access_time time,
  251.   approved datetime,
  252.   dummy_primary_key int(11) NOT NULL auto_increment,
  253.   PRIMARY KEY (dummy_primary_key)
  254. ) TYPE=innobase;
  255. INSERT INTO t1 VALUES ('user_0','somepassword','N',0,0,0,'2000-09-07','23:06:59','2000-09-07 23:06:59',1);
  256. INSERT INTO t1 VALUES ('user_1','somepassword','Y',1,1,1,'2000-09-07','23:06:59','2000-09-07 23:06:59',2);
  257. 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);
  258. 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);
  259. INSERT INTO t1 VALUES ('user_4','somepassword','N',4,4,2,'2000-09-07','23:06:59','2000-09-07 23:06:59',5);
  260. select  user_name, password , subscribed, user_id, quota, weight, access_date, access_time, approved, dummy_primary_key from t1 order by user_name;
  261. drop table t1;
  262. #
  263. # Testing of tables without primary keys
  264. #
  265. CREATE TABLE t1 (
  266.   id int(11) NOT NULL auto_increment,
  267.   parent_id int(11) DEFAULT '0' NOT NULL,
  268.   level tinyint(4) DEFAULT '0' NOT NULL,
  269.   KEY (id),
  270.   KEY parent_id (parent_id),
  271.   KEY level (level)
  272. ) type=innobase;
  273. 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);
  274. INSERT INTO t1 values (179,5,2);
  275. update t1 set parent_id=parent_id+100;
  276. select * from t1 where parent_id=102;
  277. update t1 set id=id+1000;
  278. update t1 set id=1024 where id=1009; 
  279. select * from t1;
  280. update ignore t1 set id=id+1; # This will change all rows
  281. select * from t1;
  282. update ignore t1 set id=1023 where id=1010;
  283. select * from t1 where parent_id=102;
  284. explain select level from t1 where level=1;
  285. select level,id from t1 where level=1;
  286. select level,id,parent_id from t1 where level=1;
  287. select level,id from t1 where level=1 order by id;
  288. delete from t1 where level=1;
  289. select * from t1;
  290. drop table t1;
  291. #
  292. # Test of index only reads
  293. #
  294. CREATE TABLE t1 (
  295.    sca_code char(6) NOT NULL,
  296.    cat_code char(6) NOT NULL,
  297.    sca_desc varchar(50),
  298.    lan_code char(2) NOT NULL,
  299.    sca_pic varchar(100),
  300.    sca_sdesc varchar(50),
  301.    sca_sch_desc varchar(16),
  302.    PRIMARY KEY (sca_code, cat_code, lan_code),
  303.    INDEX sca_pic (sca_pic)
  304. ) type = innobase ;
  305. 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');
  306. select count(*) from t1 where sca_code = 'PD';
  307. select count(*) from t1 where sca_code <= 'PD';
  308. select count(*) from t1 where sca_pic is null;
  309. alter table t1 drop index sca_pic, add index sca_pic (cat_code, sca_pic);
  310. select count(*) from t1 where sca_code='PD' and sca_pic is null;
  311. select count(*) from t1 where cat_code='E';
  312. alter table t1 drop index sca_pic, add index (sca_pic, cat_code);
  313. select count(*) from t1 where sca_code='PD' and sca_pic is null;
  314. select count(*) from t1 where sca_pic >= 'n';
  315. select sca_pic from t1 where sca_pic is null;
  316. update t1 set sca_pic="test" where sca_pic is null;
  317. delete from t1 where sca_code='pd';
  318. drop table t1;
  319. #
  320. # Test of opening table twice and timestamps
  321. #
  322. set @a:=now();
  323. CREATE TABLE t1 (a int not null, b timestamp not null, primary key (a)) type=innobase;
  324. insert into t1 (a) values(1),(2),(3);
  325. select t1.a from t1 natural join t1 as t2 where t1.b >= @a order by t1.a;
  326. update t1 set a=5 where a=1;
  327. select a from t1;
  328. drop table t1;
  329. #
  330. # Test with variable length primary key
  331. #
  332. create table t1 (a varchar(100) not null, primary key(a), b int not null) type=innobase;
  333. insert into t1 values("hello",1),("world",2);
  334. select * from t1 order by b desc;
  335. optimize table t1;
  336. show keys from t1;
  337. drop table t1;
  338. #
  339. # Test of create index with NULL columns
  340. #
  341. create table t1 (i int, j int ) TYPE=innobase;
  342. insert into t1 values (1,2);
  343. select * from t1 where i=1 and j=2;
  344. create index ax1 on t1 (i,j);
  345. select * from t1 where i=1 and j=2;
  346. drop table t1;
  347. #
  348. # Test min-max optimization
  349. #
  350. CREATE TABLE t1 (
  351.   a int3 unsigned NOT NULL,
  352.   b int1 unsigned NOT NULL,
  353.   UNIQUE (a, b)
  354. ) TYPE = innobase;
  355.  
  356. INSERT INTO t1 VALUES (1, 1);
  357. SELECT MIN(B),MAX(b) FROM t1 WHERE t1.a = 1;
  358. drop table t1;