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

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_innodb.inc
  2. #
  3. # Small basic test with ignore
  4. #
  5. --disable_warnings
  6. drop table if exists t1,t2,t3,t4;
  7. drop database if exists mysqltest;
  8. --enable_warnings
  9. 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=innodb;
  10. insert into t1 (code, name) values (1, 'Tim'), (1, 'Monty'), (2, 'David'), (2, 'Erik'), (3, 'Sasha'), (3, 'Jeremy'), (4, 'Matt');
  11. select id, code, name from t1 order by id;
  12. update ignore t1 set id = 8, name = 'Sinisa' where id < 3;
  13. select id, code, name from t1 order by id;
  14. update ignore t1 set id = id + 10, name = 'Ralph' where id < 4;
  15. select id, code, name from t1 order by id;
  16. drop table t1;
  17. #
  18. # A bit bigger test
  19. # The 'replace_column' statements are needed because the cardinality calculated
  20. # by innodb is not always the same between runs
  21. #
  22. CREATE TABLE t1 (
  23.   id int(11) NOT NULL auto_increment,
  24.   parent_id int(11) DEFAULT '0' NOT NULL,
  25.   level tinyint(4) DEFAULT '0' NOT NULL,
  26.   PRIMARY KEY (id),
  27.   KEY parent_id (parent_id),
  28.   KEY level (level)
  29. ) engine=innodb;
  30. 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);
  31. update t1 set parent_id=parent_id+100;
  32. select * from t1 where parent_id=102;
  33. update t1 set id=id+1000;
  34. -- error 1062,1022
  35. update t1 set id=1024 where id=1009; 
  36. select * from t1;
  37. update ignore t1 set id=id+1; # This will change all rows
  38. select * from t1;
  39. update ignore t1 set id=1023 where id=1010;
  40. select * from t1 where parent_id=102;
  41. --replace_column 9 #
  42. explain select level from t1 where level=1;
  43. --replace_column 9 #
  44. explain select level,id from t1 where level=1;
  45. --replace_column 9 #
  46. explain select level,id,parent_id from t1 where level=1;
  47. select level,id from t1 where level=1;
  48. select level,id,parent_id from t1 where level=1;
  49. optimize table t1;
  50. --replace_column 7 #
  51. show keys from t1;
  52. drop table t1;
  53. #
  54. # Test replace
  55. #
  56. CREATE TABLE t1 (
  57.   gesuchnr int(11) DEFAULT '0' NOT NULL,
  58.   benutzer_id int(11) DEFAULT '0' NOT NULL,
  59.   PRIMARY KEY (gesuchnr,benutzer_id)
  60. ) engine=innodb;
  61. replace into t1 (gesuchnr,benutzer_id) values (2,1);
  62. replace into t1 (gesuchnr,benutzer_id) values (1,1);
  63. replace into t1 (gesuchnr,benutzer_id) values (1,1);
  64. select * from t1;
  65. drop table t1;
  66. #
  67. # test delete using hidden_primary_key
  68. #
  69. create table t1 (a int) engine=innodb;
  70. insert into t1 values (1), (2);
  71. optimize table t1;
  72. delete from t1 where a = 1;
  73. select * from t1;
  74. check table t1;
  75. drop table t1;
  76. create table t1 (a int,b varchar(20)) engine=innodb;
  77. insert into t1 values (1,""), (2,"testing");
  78. delete from t1 where a = 1;
  79. select * from t1;
  80. create index skr on t1 (a);
  81. insert into t1 values (3,""), (4,"testing");
  82. analyze table t1;
  83. --replace_column 7 #
  84. show keys from t1;
  85. drop table t1;
  86. # Test of reading on secondary key with may be null
  87. create table t1 (a int,b varchar(20),key(a)) engine=innodb;
  88. insert into t1 values (1,""), (2,"testing");
  89. select * from t1 where a = 1;
  90. drop table t1;
  91. #
  92. # Test rollback
  93. #
  94. create table t1 (n int not null primary key) engine=innodb;
  95. set autocommit=0;
  96. insert into t1 values (4);
  97. rollback;
  98. select n, "after rollback" from t1;
  99. insert into t1 values (4);
  100. commit;
  101. select n, "after commit" from t1;
  102. commit;
  103. insert into t1 values (5);
  104. -- error 1062
  105. insert into t1 values (4);
  106. commit;
  107. select n, "after commit" from t1;
  108. set autocommit=1;
  109. insert into t1 values (6);
  110. -- error 1062
  111. insert into t1 values (4);
  112. select n from t1;
  113. # nop
  114. rollback;
  115. drop table t1;
  116. #
  117. # Test for commit and FLUSH TABLES WITH READ LOCK
  118. #
  119. create table t1 (n int not null primary key) engine=innodb;
  120. start transaction;
  121. insert into t1 values (4);
  122. flush tables with read lock;
  123. #
  124. # Current code can't handle a read lock in middle of transaction
  125. #--error 1223;
  126. commit;
  127. unlock tables;
  128. commit;
  129. select * from t1;
  130. drop table t1;
  131. #
  132. # Testing transactions
  133. #
  134. create table t1 ( id int NOT NULL PRIMARY KEY, nom varchar(64)) engine=innodb;
  135. begin;
  136. insert into t1 values(1,'hamdouni');
  137. select id as afterbegin_id,nom as afterbegin_nom from t1;
  138. rollback;
  139. select id as afterrollback_id,nom as afterrollback_nom from t1;
  140. set autocommit=0;
  141. insert into t1 values(2,'mysql');
  142. select id as afterautocommit0_id,nom as afterautocommit0_nom from t1;
  143. rollback;
  144. select id as afterrollback_id,nom as afterrollback_nom from t1;
  145. set autocommit=1;
  146. drop table t1;
  147. #
  148. # Simple not autocommit test
  149. CREATE TABLE t1 (id char(8) not null primary key, val int not null) engine=innodb;
  150. insert into t1 values ('pippo', 12);
  151. -- error 1062
  152. insert into t1 values ('pippo', 12); # Gives error
  153. delete from t1;
  154. delete from t1 where id = 'pippo';
  155. select * from t1;
  156. insert into t1 values ('pippo', 12);
  157. set autocommit=0;
  158. delete from t1;
  159. rollback;
  160. select * from t1;
  161. delete from t1;
  162. commit;
  163. select * from t1;
  164. drop table t1;
  165. #
  166. # Test of active transactions
  167. #
  168. create table t1 (a integer) engine=innodb;
  169. start transaction;
  170. rename table t1 to t2;
  171. create table t1 (b integer) engine=innodb;
  172. insert into t1 values (1);
  173. rollback;
  174. drop table t1;
  175. rename table t2 to t1;
  176. drop table t1;
  177. set autocommit=1;
  178. #
  179. # The following simple tests failed at some point
  180. #
  181. CREATE TABLE t1 (ID INTEGER NOT NULL PRIMARY KEY, NAME VARCHAR(64)) ENGINE=innodb;
  182. INSERT INTO t1 VALUES (1, 'Jochen');
  183. select * from t1;
  184. drop table t1;
  185. CREATE TABLE t1 ( _userid VARCHAR(60) NOT NULL PRIMARY KEY) ENGINE=innodb;
  186. set autocommit=0;
  187. INSERT INTO t1  SET _userid='marc@anyware.co.uk';
  188. COMMIT;
  189. SELECT * FROM t1;
  190. SELECT _userid FROM t1 WHERE _userid='marc@anyware.co.uk';
  191. drop table t1;
  192. set autocommit=1;
  193. #
  194. # Test when reading on part of unique key
  195. #
  196. CREATE TABLE t1 (
  197.   user_id int(10) DEFAULT '0' NOT NULL,
  198.   name varchar(100),
  199.   phone varchar(100),
  200.   ref_email varchar(100) DEFAULT '' NOT NULL,
  201.   detail varchar(200),
  202.   PRIMARY KEY (user_id,ref_email)
  203. )engine=innodb;
  204. 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');
  205. select * from t1 where user_id=10292;
  206. INSERT INTO t1 VALUES (10291,'sanjeev','29153373','sansh777@hotmail.com','xxx'),(10293,'shirish','2333604','shirish@yahoo.com','ddsds');
  207. select * from t1 where user_id=10292;
  208. select * from t1 where user_id>=10292;
  209. select * from t1 where user_id>10292;
  210. select * from t1 where user_id<10292;
  211. drop table t1;
  212. #
  213. # Test that keys are created in right order
  214. #
  215. CREATE TABLE t1 (a int not null, b int not null,c int not null,
  216. key(a),primary key(a,b), unique(c),key(a),unique(b));
  217. --replace_column 7 #
  218. show index from t1;
  219. drop table t1;
  220. #
  221. # Test of ALTER TABLE and innodb tables
  222. #
  223. create table t1 (col1 int not null, col2 char(4) not null, primary key(col1));
  224. alter table t1 engine=innodb;
  225. insert into t1 values ('1','1'),('5','2'),('2','3'),('3','4'),('4','4');
  226. select * from t1;
  227. update t1 set col2='7' where col1='4';
  228. select * from t1;
  229. alter table t1 add co3 int not null;
  230. select * from t1;
  231. update t1 set col2='9' where col1='2';
  232. select * from t1;
  233. drop table t1;
  234. #
  235. # INSERT INTO innodb tables
  236. #
  237. create table t1 (a int not null , b int, primary key (a)) engine = innodb;
  238. create table t2 (a int not null , b int, primary key (a)) engine = myisam;
  239. insert into t1 VALUES (1,3) , (2,3), (3,3);
  240. select * from t1;
  241. insert into t2 select * from t1;
  242. select * from t2;
  243. delete from t1 where b = 3;
  244. select * from t1;
  245. insert into t1 select * from t2;
  246. select * from t1;
  247. select * from t2;
  248. drop table t1,t2;
  249. #
  250. # Search on unique key
  251. #
  252. CREATE TABLE t1 (
  253.   id int(11) NOT NULL auto_increment,
  254.   ggid varchar(32) binary DEFAULT '' NOT NULL,
  255.   email varchar(64) DEFAULT '' NOT NULL,
  256.   passwd varchar(32) binary DEFAULT '' NOT NULL,
  257.   PRIMARY KEY (id),
  258.   UNIQUE ggid (ggid)
  259. ) ENGINE=innodb;
  260. insert into t1 (ggid,passwd) values ('test1','xxx');
  261. insert into t1 (ggid,passwd) values ('test2','yyy');
  262. -- error 1062
  263. insert into t1 (ggid,passwd) values ('test2','this will fail');
  264. -- error 1062
  265. insert into t1 (ggid,id) values ('this will fail',1);
  266. select * from t1 where ggid='test1';
  267. select * from t1 where passwd='xxx';
  268. select * from t1 where id=2;
  269. replace into t1 (ggid,id) values ('this will work',1);
  270. replace into t1 (ggid,passwd) values ('test2','this will work');
  271. -- error 1062
  272. update t1 set id=100,ggid='test2' where id=1;
  273. select * from t1;
  274. select * from t1 where id=1;
  275. select * from t1 where id=999;
  276. drop table t1;
  277. #
  278. # ORDER BY on not primary key
  279. #
  280. CREATE TABLE t1 (
  281.   user_name varchar(12),
  282.   password text,
  283.   subscribed char(1),
  284.   user_id int(11) DEFAULT '0' NOT NULL,
  285.   quota bigint(20),
  286.   weight double,
  287.   access_date date,
  288.   access_time time,
  289.   approved datetime,
  290.   dummy_primary_key int(11) NOT NULL auto_increment,
  291.   PRIMARY KEY (dummy_primary_key)
  292. ) ENGINE=innodb;
  293. INSERT INTO t1 VALUES ('user_0','somepassword','N',0,0,0,'2000-09-07','23:06:59','2000-09-07 23:06:59',1);
  294. INSERT INTO t1 VALUES ('user_1','somepassword','Y',1,1,1,'2000-09-07','23:06:59','2000-09-07 23:06:59',2);
  295. 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);
  296. 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);
  297. INSERT INTO t1 VALUES ('user_4','somepassword','N',4,4,2,'2000-09-07','23:06:59','2000-09-07 23:06:59',5);
  298. select  user_name, password , subscribed, user_id, quota, weight, access_date, access_time, approved, dummy_primary_key from t1 order by user_name;
  299. drop table t1;
  300. #
  301. # Testing of tables without primary keys
  302. #
  303. CREATE TABLE t1 (
  304.   id int(11) NOT NULL auto_increment,
  305.   parent_id int(11) DEFAULT '0' NOT NULL,
  306.   level tinyint(4) DEFAULT '0' NOT NULL,
  307.   KEY (id),
  308.   KEY parent_id (parent_id),
  309.   KEY level (level)
  310. ) engine=innodb;
  311. 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);
  312. INSERT INTO t1 values (179,5,2);
  313. update t1 set parent_id=parent_id+100;
  314. select * from t1 where parent_id=102;
  315. update t1 set id=id+1000;
  316. update t1 set id=1024 where id=1009; 
  317. select * from t1;
  318. update ignore t1 set id=id+1; # This will change all rows
  319. select * from t1;
  320. update ignore t1 set id=1023 where id=1010;
  321. select * from t1 where parent_id=102;
  322. --replace_column 9 #
  323. explain select level from t1 where level=1;
  324. select level,id from t1 where level=1;
  325. select level,id,parent_id from t1 where level=1;
  326. select level,id from t1 where level=1 order by id;
  327. delete from t1 where level=1;
  328. select * from t1;
  329. drop table t1;
  330. #
  331. # Test of index only reads
  332. #
  333. CREATE TABLE t1 (
  334.    sca_code char(6) NOT NULL,
  335.    cat_code char(6) NOT NULL,
  336.    sca_desc varchar(50),
  337.    lan_code char(2) NOT NULL,
  338.    sca_pic varchar(100),
  339.    sca_sdesc varchar(50),
  340.    sca_sch_desc varchar(16),
  341.    PRIMARY KEY (sca_code, cat_code, lan_code),
  342.    INDEX sca_pic (sca_pic)
  343. ) engine = innodb ;
  344. 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');
  345. select count(*) from t1 where sca_code = 'PD';
  346. select count(*) from t1 where sca_code <= 'PD';
  347. select count(*) from t1 where sca_pic is null;
  348. alter table t1 drop index sca_pic, add index sca_pic (cat_code, sca_pic);
  349. select count(*) from t1 where sca_code='PD' and sca_pic is null;
  350. select count(*) from t1 where cat_code='E';
  351. alter table t1 drop index sca_pic, add index (sca_pic, cat_code);
  352. select count(*) from t1 where sca_code='PD' and sca_pic is null;
  353. select count(*) from t1 where sca_pic >= 'n';
  354. select sca_pic from t1 where sca_pic is null;
  355. update t1 set sca_pic="test" where sca_pic is null;
  356. delete from t1 where sca_code='pd';
  357. drop table t1;
  358. #
  359. # Test of opening table twice and timestamps
  360. #
  361. set @a:=now();
  362. CREATE TABLE t1 (a int not null, b timestamp not null, primary key (a)) engine=innodb;
  363. insert into t1 (a) values(1),(2),(3);
  364. select t1.a from t1 natural join t1 as t2 where t1.b >= @a order by t1.a;
  365. update t1 set a=5 where a=1;
  366. select a 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=innodb;
  372. insert into t1 values("hello",1),("world",2);
  373. select * from t1 order by b desc;
  374. optimize table t1;
  375. --replace_column 7 #
  376. show keys from t1;
  377. drop table t1;
  378. #
  379. # Test of create index with NULL columns
  380. #
  381. create table t1 (i int, j int ) ENGINE=innodb;
  382. insert into t1 values (1,2);
  383. select * from t1 where i=1 and j=2;
  384. create index ax1 on t1 (i,j);
  385. select * from t1 where i=1 and j=2;
  386. drop table t1;
  387. #
  388. # Test min-max optimization
  389. #
  390. CREATE TABLE t1 (
  391.   a int3 unsigned NOT NULL,
  392.   b int1 unsigned NOT NULL,
  393.   UNIQUE (a, b)
  394. ) ENGINE = innodb;
  395.  
  396. INSERT INTO t1 VALUES (1, 1);
  397. SELECT MIN(B),MAX(b) FROM t1 WHERE t1.a = 1;
  398. drop table t1;
  399. #
  400. # Test INSERT DELAYED
  401. #
  402. CREATE TABLE t1 (a int unsigned NOT NULL) engine=innodb;
  403. # Can't test this in 3.23
  404. # INSERT DELAYED INTO t1 VALUES (1);
  405. INSERT INTO t1 VALUES (1);
  406. SELECT * FROM t1;
  407. DROP TABLE t1;
  408. #
  409. # Crash when using many tables (Test case by Jeremy D Zawodny)
  410. #
  411. create table t1 (a int  primary key,b int, c int, d int, e int, f int, g int, h int, i int, j int, k int, l int, m int, n int, o int, p int, q int, r int, s int, t int, u int, v int, w int, x int, y int, z int, a1 int, a2 int, a3 int, a4 int, a5 int, a6 int, a7 int, a8 int, a9 int, b1 int, b2 int, b3 int, b4 int, b5 int, b6 int) engine = innodb;
  412. insert into t1 values (1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1);
  413. --replace_column 9 #
  414. explain select * from t1 where a > 0 and a < 50;
  415. drop table t1;
  416. #
  417. # Test lock tables
  418. #
  419. 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=innodb;
  420. insert into t1 values (0,0,0,'ABCDEFGHIJ'),(2,2,2,'BCDEFGHIJK'),(1,1,1,'CDEFGHIJKL');
  421. LOCK TABLES t1 WRITE;
  422. --error 1062
  423. insert into t1 values (99,1,2,'D'),(1,1,2,'D');
  424. select id from t1;
  425. select id from t1;
  426. UNLOCK TABLES;
  427. DROP TABLE t1;
  428. 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=innodb;
  429. insert into t1 values (0,0,0,'ABCDEFGHIJ'),(2,2,2,'BCDEFGHIJK'),(1,1,1,'CDEFGHIJKL');
  430. LOCK TABLES t1 WRITE;
  431. begin;
  432. --error 1062
  433. insert into t1 values (99,1,2,'D'),(1,1,2,'D');
  434. select id from t1;
  435. insert ignore into t1 values (100,1,2,'D'),(1,1,99,'D');
  436. commit;
  437. select id,id3 from t1;
  438. UNLOCK TABLES;
  439. DROP TABLE t1;
  440. #
  441. # Test prefix key
  442. #
  443. create table t1 (a char(20), unique (a(5))) engine=innodb;
  444. drop table t1;
  445. create table t1 (a char(20), index (a(5))) engine=innodb;
  446. show create table t1;
  447. drop table t1;
  448. #
  449. # Test using temporary table and auto_increment
  450. #
  451. create temporary table t1 (a int not null auto_increment, primary key(a)) engine=innodb;
  452. insert into t1 values (NULL),(NULL),(NULL);
  453. delete from t1 where a=3;
  454. insert into t1 values (NULL);
  455. select * from t1;
  456. alter table t1 add b int;
  457. select * from t1;
  458. drop table t1;
  459. #Slashdot bug
  460. create table t1
  461.  (
  462.   id int auto_increment primary key,
  463.   name varchar(32) not null,
  464.   value text not null,
  465.   uid int not null,
  466.   unique key(name,uid)
  467.  ) engine=innodb;
  468. insert into t1 values (1,'one','one value',101),
  469.  (2,'two','two value',102),(3,'three','three value',103);
  470. set insert_id=5;
  471. replace into t1 (value,name,uid) values ('other value','two',102);
  472. delete from t1 where uid=102;
  473. set insert_id=5;
  474. replace into t1 (value,name,uid) values ('other value','two',102);
  475. set insert_id=6;
  476. replace into t1 (value,name,uid) values ('other value','two',102);
  477. select * from t1;
  478. drop table t1;
  479. #
  480. # Test DROP DATABASE
  481. #
  482. create database mysqltest;
  483. create table mysqltest.t1 (a int not null) engine= innodb;
  484. insert into mysqltest.t1 values(1);
  485. create table mysqltest.t2 (a int not null) engine= myisam;
  486. insert into mysqltest.t2 values(1);
  487. create table mysqltest.t3 (a int not null) engine= heap;
  488. insert into mysqltest.t3 values(1);
  489. commit;
  490. drop database mysqltest;
  491. # Don't check error message
  492. --error 12,12
  493. show tables from mysqltest;
  494. #
  495. # Test truncate table with and without auto_commit
  496. #
  497. set autocommit=0;
  498. create table t1 (a int not null) engine= innodb;
  499. insert into t1 values(1),(2);
  500. truncate table t1;
  501. commit;
  502. truncate table t1;
  503. truncate table t1;
  504. select * from t1;
  505. insert into t1 values(1),(2);
  506. delete from t1;
  507. select * from t1;
  508. commit;
  509. drop table t1;
  510. set autocommit=1;
  511. create table t1 (a int not null) engine= innodb;
  512. insert into t1 values(1),(2);
  513. truncate table t1;
  514. insert into t1 values(1),(2);
  515. select * from t1;
  516. truncate table t1;
  517. insert into t1 values(1),(2);
  518. delete from t1;
  519. select * from t1;
  520. drop table t1;
  521. #
  522. # Test of how ORDER BY works when doing it on the whole table
  523. #
  524. create table t1 (a int not null, b int not null, c int not null, primary key (a),key(b)) engine=innodb;
  525. insert into t1 values (3,3,3),(1,1,1),(2,2,2),(4,4,4);
  526. --replace_column 9 #
  527. explain select * from t1 order by a;
  528. --replace_column 9 #
  529. explain select * from t1 order by b;
  530. --replace_column 9 #
  531. explain select * from t1 order by c;
  532. --replace_column 9 #
  533. explain select a from t1 order by a;
  534. --replace_column 9 #
  535. explain select b from t1 order by b;
  536. --replace_column 9 #
  537. explain select a,b from t1 order by b;
  538. --replace_column 9 #
  539. explain select a,b from t1;
  540. --replace_column 9 #
  541. explain select a,b,c from t1;
  542. drop table t1;
  543. #
  544. # Check describe
  545. #
  546. create table t1 (t int not null default 1, key (t)) engine=innodb;
  547. desc t1;
  548. drop table t1;
  549. #
  550. # Test of multi-table-delete
  551. #
  552. CREATE TABLE t1 (
  553.   number bigint(20) NOT NULL default '0',
  554.   cname char(15) NOT NULL default '',
  555.   carrier_id smallint(6) NOT NULL default '0',
  556.   privacy tinyint(4) NOT NULL default '0',
  557.   last_mod_date timestamp(14) NOT NULL,
  558.   last_mod_id smallint(6) NOT NULL default '0',
  559.   last_app_date timestamp(14) NOT NULL,
  560.   last_app_id smallint(6) default '-1',
  561.   version smallint(6) NOT NULL default '0',
  562.   assigned_scps int(11) default '0',
  563.   status tinyint(4) default '0'
  564. ) ENGINE=InnoDB;
  565. INSERT INTO t1 VALUES (4077711111,'SeanWheeler',90,2,20020111112846,500,00000000000000,-1,2,3,1);
  566. INSERT INTO t1 VALUES (9197722223,'berry',90,3,20020111112809,500,20020102114532,501,4,10,0);
  567. INSERT INTO t1 VALUES (650,'San Francisco',0,0,20011227111336,342,00000000000000,-1,1,24,1);
  568. INSERT INTO t1 VALUES (302467,'Sue's Subshop',90,3,20020109113241,500,20020102115111,501,7,24,0);
  569. INSERT INTO t1 VALUES (6014911113,'SudzCarwash',520,1,20020102115234,500,20020102115259,501,33,32768,0);
  570. INSERT INTO t1 VALUES (333,'tubs',99,2,20020109113440,501,20020109113440,500,3,10,0);
  571. CREATE TABLE t2 (
  572.   number bigint(20) NOT NULL default '0',
  573.   cname char(15) NOT NULL default '',
  574.   carrier_id smallint(6) NOT NULL default '0',
  575.   privacy tinyint(4) NOT NULL default '0',
  576.   last_mod_date timestamp(14) NOT NULL,
  577.   last_mod_id smallint(6) NOT NULL default '0',
  578.   last_app_date timestamp(14) NOT NULL,
  579.   last_app_id smallint(6) default '-1',
  580.   version smallint(6) NOT NULL default '0',
  581.   assigned_scps int(11) default '0',
  582.   status tinyint(4) default '0'
  583. ) ENGINE=InnoDB;
  584. INSERT INTO t2 VALUES (4077711111,'SeanWheeler',0,2,20020111112853,500,00000000000000,-1,2,3,1);
  585. INSERT INTO t2 VALUES (9197722223,'berry',90,3,20020111112818,500,20020102114532,501,4,10,0);
  586. INSERT INTO t2 VALUES (650,'San Francisco',90,0,20020109113158,342,00000000000000,-1,1,24,1);
  587. INSERT INTO t2 VALUES (333,'tubs',99,2,20020109113453,501,20020109113453,500,3,10,0);
  588. select * from t1;
  589. select * from t2;
  590. delete t1, t2 from t1 left join t2 on t1.number=t2.number where (t1.carrier_id=90 and t1.number=t2.number) or (t2.carrier_id=90 and t1.number=t2.number) or  (t1.carrier_id=90 and t2.number is null);
  591. select * from t1;
  592. select * from t2; 
  593. select * from t2;
  594. drop table t1,t2;
  595. #
  596. # A simple test with some isolation levels
  597. # TODO: Make this into a test using replication to really test how
  598. # this works.
  599. #
  600. 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=innodb;
  601. BEGIN;
  602. SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE;
  603. SELECT @@tx_isolation,@@global.tx_isolation;
  604. insert into t1 (code, name) values (1, 'Tim'), (1, 'Monty'), (2, 'David');
  605. select id, code, name from t1 order by id;
  606. COMMIT;
  607. BEGIN;
  608. SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ;
  609. insert into t1 (code, name) values (2, 'Erik'), (3, 'Sasha');
  610. select id, code, name from t1 order by id;
  611. COMMIT;
  612. BEGIN;
  613. SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
  614. insert into t1 (code, name) values (3, 'Jeremy'), (4, 'Matt');
  615. select id, code, name from t1 order by id;
  616. COMMIT;
  617. DROP TABLE t1;
  618. #
  619. # Test of multi-table-update
  620. #
  621. create table t1 (n int(10), d int(10)) engine=innodb;
  622. create table t2 (n int(10), d int(10)) engine=innodb;
  623. insert into t1 values(1,1),(1,2);
  624. insert into t2 values(1,10),(2,20);
  625. UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
  626. select * from t1;
  627. select * from t2;
  628. drop table t1,t2;
  629. #
  630. # Testing of IFNULL
  631. #
  632. create table t1 (a int, b int) engine=innodb;
  633. insert into t1 values(20,null);
  634. select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
  635. t2.b=t3.a;
  636. select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
  637. t2.b=t3.a order by 1;
  638. insert into t1 values(10,null);
  639. select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
  640. t2.b=t3.a order by 1;
  641. drop table t1;
  642. #
  643. # Test of read_through not existing const_table
  644. #
  645. create table t1 (a varchar(10) not null) engine=myisam;
  646. create table t2 (b varchar(10) not null unique) engine=innodb;
  647. select t1.a from t1,t2 where t1.a=t2.b;
  648. drop table t1,t2;
  649. create table t1 (a int not null, b int, primary key (a)) engine = innodb;
  650. create table t2 (a int not null, b int, primary key (a)) engine = innodb;
  651. insert into t1 values (10, 20);
  652. insert into t2 values (10, 20);
  653. update t1, t2 set t1.b = 150, t2.b = t1.b where t2.a = t1.a and t1.a = 10;
  654. drop table t1,t2;
  655. #
  656. # Test of multi-table-delete with foreign key constraints
  657. #
  658. CREATE TABLE t1 (id INT NOT NULL, PRIMARY KEY (id)) ENGINE=INNODB;
  659. CREATE TABLE t2 (id INT PRIMARY KEY, t1_id INT, INDEX par_ind (t1_id), FOREIGN KEY (t1_id) REFERENCES t1(id)  ON DELETE CASCADE ) ENGINE=INNODB;
  660. insert into t1 set id=1;
  661. insert into t2 set id=1, t1_id=1;
  662. delete t1,t2 from t1,t2 where t1.id=t2.t1_id;
  663. select * from t1;
  664. select * from t2;
  665. drop table t2,t1;
  666. CREATE TABLE t1(id INT NOT NULL,  PRIMARY KEY (id)) ENGINE=INNODB;
  667. CREATE TABLE t2(id  INT PRIMARY KEY, t1_id INT, INDEX par_ind (t1_id)  ) ENGINE=INNODB;
  668. INSERT INTO t1 VALUES(1);
  669. INSERT INTO t2 VALUES(1, 1);
  670. SELECT * from t1;
  671. UPDATE t1,t2 SET t1.id=t1.id+1, t2.t1_id=t1.id+1;
  672. SELECT * from t1;
  673. UPDATE t1,t2 SET t1.id=t1.id+1 where t1.id!=t2.id;
  674. SELECT * from t1;
  675. DROP TABLE t1,t2;
  676. #
  677. # Test of range_optimizer
  678. #
  679. set autocommit=0;
  680. CREATE TABLE t1 (id CHAR(15) NOT NULL, value CHAR(40) NOT NULL, PRIMARY KEY(id)) ENGINE=InnoDB;
  681. CREATE TABLE t2 (id CHAR(15) NOT NULL, value CHAR(40) NOT NULL, PRIMARY KEY(id)) ENGINE=InnoDB;
  682. CREATE TABLE t3 (id1 CHAR(15) NOT NULL, id2 CHAR(15) NOT NULL, PRIMARY KEY(id1, id2)) ENGINE=InnoDB;
  683. INSERT INTO t3 VALUES("my-test-1", "my-test-2");
  684. COMMIT;
  685. INSERT INTO t1 VALUES("this-key", "will disappear");
  686. INSERT INTO t2 VALUES("this-key", "will also disappear");
  687. DELETE FROM t3 WHERE id1="my-test-1";
  688. SELECT * FROM t1;
  689. SELECT * FROM t2;
  690. SELECT * FROM t3;
  691. ROLLBACK;
  692. SELECT * FROM t1;
  693. SELECT * FROM t2;
  694. SELECT * FROM t3;
  695. SELECT * FROM t3 WHERE id1="my-test-1" LOCK IN SHARE MODE;
  696. COMMIT;
  697. set autocommit=1;
  698. DROP TABLE t1,t2,t3;
  699. #
  700. # Check update with conflicting key
  701. #
  702. CREATE TABLE t1 (a int not null primary key, b int not null, unique (b)) engine=innodb;
  703. INSERT INTO t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
  704. # We need the a < 1000 test here to quard against the halloween problems
  705. UPDATE t1 set a=a+100 where b between 2 and 3 and a < 1000;
  706. SELECT * from t1;
  707. drop table t1;
  708. #
  709. # Test multi update with different join methods
  710. #
  711. CREATE TABLE t1 (a int not null primary key, b int not null, key (b)) engine=innodb;
  712. CREATE TABLE t2 (a int not null primary key, b int not null, key (b)) engine=innodb;
  713. INSERT INTO t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9),(10,10),(11,11),(12,12);
  714. INSERT INTO t2 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
  715. # Full join, without key
  716. update t1,t2 set t1.a=t1.a+100;
  717. select * from t1;
  718. # unique key
  719. update t1,t2 set t1.a=t1.a+100 where t1.a=101;
  720. select * from t1;
  721. # ref key
  722. update t1,t2 set t1.b=t1.b+10 where t1.b=2;
  723. select * from t1;
  724. # Range key (in t1)
  725. update t1,t2 set t1.b=t1.b+2,t2.b=t1.b+10 where t1.b between 3 and 5 and t1.a=t2.a+100;
  726. select * from t1;
  727. select * from t2;
  728. drop table t1,t2;
  729. CREATE TABLE t2 (   NEXT_T         BIGINT NOT NULL PRIMARY KEY) ENGINE=MyISAM;
  730. CREATE TABLE t1 (  B_ID           INTEGER NOT NULL PRIMARY KEY) ENGINE=InnoDB;
  731. SET AUTOCOMMIT=0;
  732. INSERT INTO t1 ( B_ID ) VALUES ( 1 );
  733. INSERT INTO t2 ( NEXT_T ) VALUES ( 1 );
  734. ROLLBACK;
  735. SELECT * FROM t1;
  736. drop table  t1,t2;
  737. create table t1  ( pk         int primary key,    parent     int not null,    child      int not null,       index (parent)  ) engine = innodb;
  738. insert into t1 values   (1,0,4),  (2,1,3),  (3,2,1),  (4,1,2);
  739. select distinct  parent,child   from t1   order by parent;
  740. drop table t1;
  741. #
  742. # Test that MySQL priorities clustered indexes
  743. #
  744. create table t1 (a int not null auto_increment primary key, b int, c int, key(c)) engine=innodb;
  745. create table t2 (a int not null auto_increment primary key, b int);
  746. insert into t1 (b) values (null),(null),(null),(null),(null),(null),(null);
  747. insert into t2 (a) select b from t1;
  748. insert into t1 (b) select b from t2;
  749. insert into t2 (a) select b from t1;
  750. insert into t1 (a) select b from t2;
  751. insert into t2 (a) select b from t1;
  752. insert into t1 (a) select b from t2;
  753. insert into t2 (a) select b from t1;
  754. insert into t1 (a) select b from t2;
  755. insert into t2 (a) select b from t1;
  756. insert into t1 (a) select b from t2;
  757. insert into t2 (a) select b from t1;
  758. insert into t1 (a) select b from t2;
  759. insert into t2 (a) select b from t1;
  760. insert into t1 (a) select b from t2;
  761. insert into t2 (a) select b from t1;
  762. insert into t1 (a) select b from t2;
  763. insert into t2 (a) select b from t1;
  764. insert into t1 (a) select b from t2;
  765. select count(*) from t1;
  766. --replace_column 9 #
  767. explain select * from t1 where c between 1 and 10000;
  768. update t1 set c=a;
  769. --replace_column 9 #
  770. explain select * from t1 where c between 1 and 10000;
  771. drop table t1,t2;
  772. #
  773. # Test of UPDATE ... ORDER BY
  774. #
  775. create table t1 (id int primary key auto_increment, fk int, index index_fk (fk)) engine=innodb;
  776. insert into t1 (id) values (null),(null),(null),(null),(null);
  777. update t1 set fk=69 where fk is null order by id limit 1;
  778. SELECT * from t1;
  779. drop table t1;
  780. create table t1 (a int not null, b int not null, key (a));
  781. insert into t1 values (1,1),(1,2),(1,3),(3,1),(3,2),(3,3),(3,1),(3,2),(3,3),(2,1),(2,2),(2,3);
  782. SET @tmp=0;
  783. update t1 set b=(@tmp:=@tmp+1) order by a;
  784. update t1 set b=99 where a=1 order by b asc limit 1;
  785. update t1 set b=100 where a=1 order by b desc limit 2;
  786. update t1 set a=a+10+b where a=1 order by b;
  787. select * from t1 order by a,b;
  788. drop table t1;
  789. #
  790. # Test of multi-table-updates (bug #1980).
  791. #
  792. create table t1 ( c char(8) not null ) engine=innodb;
  793. insert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9');
  794. insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F');
  795. alter table t1 add b char(8) not null;
  796. alter table t1 add a char(8) not null;
  797. alter table t1 add primary key (a,b,c);
  798. update t1 set a=c, b=c;
  799. create table t2 (c char(8) not null, b char(8) not null, a char(8) not null, primary key(a,b,c)) engine=innodb;
  800. insert into t2 select * from t1;
  801. delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;
  802. drop table t1,t2;
  803. #
  804. # test autoincrement with TRUNCATE
  805. #
  806. SET AUTOCOMMIT=1;
  807. create table t1 (a integer auto_increment primary key) engine=innodb;
  808. insert into t1 (a) values (NULL),(NULL);
  809. truncate table t1;
  810. insert into t1 (a) values (NULL),(NULL);
  811. SELECT * from t1;
  812. drop table t1;
  813. #
  814. # Test dictionary handling with spaceand quoting
  815. #
  816. CREATE TABLE t1 (`id 1` INT NOT NULL, PRIMARY KEY (`id 1`)) ENGINE=INNODB;
  817. CREATE TABLE t2 (id INT PRIMARY KEY, t1_id INT, INDEX par_ind (t1_id), FOREIGN KEY (`t1_id`) REFERENCES `t1`(`id 1`)  ON DELETE CASCADE ) ENGINE=INNODB;
  818. #show create table t2;
  819. drop table t2,t1;
  820. #
  821. # Test of multi updated and foreign keys
  822. #
  823. create table `t1` (`id` int( 11 ) not null  ,primary key ( `id` )) engine = innodb;
  824. insert into `t1`values ( 1 ) ;
  825. create table `t2` (`id` int( 11 ) not null default '0',unique key `id` ( `id` ) ,constraint `t1_id_fk` foreign key ( `id` ) references `t1` (`id` )) engine = innodb;
  826. insert into `t2`values ( 1 ) ;
  827. create table `t3` (`id` int( 11 ) not null default '0',key `id` ( `id` ) ,constraint `t2_id_fk` foreign key ( `id` ) references `t2` (`id` )) engine = innodb;
  828. insert into `t3`values ( 1 ) ;
  829. --error 1217
  830. delete t3,t2,t1 from t1,t2,t3 where t1.id =1 and t2.id = t1.id and t3.id = t2.id;
  831. --error 1217
  832. update t1,t2,t3 set t3.id=5, t2.id=6, t1.id=7  where t1.id =1 and t2.id = t1.id and t3.id = t2.id;
  833. --error 1109
  834. update t3 set  t3.id=7  where t1.id =1 and t2.id = t1.id and t3.id = t2.id;
  835. drop table t3,t2,t1;
  836. #
  837. # test for recursion depth limit
  838. #
  839. create table t1(
  840. id int primary key,
  841. pid int,
  842. index(pid),
  843. foreign key(pid) references t1(id) on delete cascade) engine=innodb;
  844. insert into t1 values(0,0),(1,0),(2,1),(3,2),(4,3),(5,4),(6,5),(7,6),
  845. (8,7),(9,8),(10,9),(11,10),(12,11),(13,12),(14,13),(15,14);
  846. -- error 1217
  847. delete from t1 where id=0;
  848. delete from t1 where id=15;
  849. delete from t1 where id=0;
  850. drop table t1;
  851. #
  852. # Test timestamps
  853. #
  854. CREATE TABLE t1 (col1 int(1))ENGINE=InnoDB;
  855. CREATE TABLE t2 (col1 int(1),stamp TIMESTAMP,INDEX stamp_idx
  856. (stamp))ENGINE=InnoDB;
  857. insert into t1 values (1),(2),(3);
  858. # Note that timestamp 3 is wrong
  859. insert into t2 values (1, 20020204130000),(2, 20020204130000),(4,20020204310000 ),(5,20020204230000);
  860. SELECT col1 FROM t1 UNION SELECT col1 FROM t2 WHERE stamp <
  861. '20020204120000' GROUP BY col1;
  862. drop table t1,t2;
  863. #
  864. # Test by Francois MASUREL
  865. #
  866. CREATE TABLE t1 (
  867.   `id` int(10) unsigned NOT NULL auto_increment,
  868.   `id_object` int(10) unsigned default '0',
  869.   `id_version` int(10) unsigned NOT NULL default '1',
  870.   label varchar(100) NOT NULL default '',
  871.   `description` text,
  872.   PRIMARY KEY  (`id`),
  873.   KEY `id_object` (`id_object`),
  874.   KEY `id_version` (`id_version`)
  875. ) ENGINE=InnoDB;
  876. INSERT INTO t1 VALUES("6", "3382", "9", "Test", NULL), ("7", "102", "5", "Le Pekin (Test)", NULL),("584", "1794", "4", "Test de resto", NULL),("837", "1822", "6", "Test 3", NULL),("1119", "3524", "1", "Societe Test", NULL),("1122", "3525", "1", "Fournisseur Test", NULL);
  877. CREATE TABLE t2 (
  878.   `id` int(10) unsigned NOT NULL auto_increment,
  879.   `id_version` int(10) unsigned NOT NULL default '1',
  880.   PRIMARY KEY  (`id`),
  881.   KEY `id_version` (`id_version`)
  882. ) ENGINE=InnoDB;
  883. INSERT INTO t2 VALUES("3524", "1"),("3525", "1"),("1794", "4"),("102", "5"),("1822", "6"),("3382", "9");
  884. SELECT t2.id, t1.label FROM t2 INNER JOIN
  885. (SELECT t1.id_object as id_object FROM t1 WHERE t1.label LIKE '%test%') AS lbl 
  886. ON (t2.id = lbl.id_object) INNER JOIN t1 ON (t2.id = t1.id_object);
  887. drop table t1,t2;
  888. create table t1 (a int, b varchar(200), c text not null) checksum=1 engine=myisam;
  889. create table t2 (a int, b varchar(200), c text not null) checksum=0 engine=innodb;
  890. create table t3 (a int, b varchar(200), c text not null) checksum=1 engine=innodb;
  891. insert t1 values (1, "aaa", "bbb"), (NULL, "", "ccccc"), (0, NULL, "");
  892. insert t2 select * from t1;
  893. insert t3 select * from t1;
  894. checksum table t1, t2, t3, t4 quick;
  895. checksum table t1, t2, t3, t4;
  896. checksum table t1, t2, t3, t4 extended;
  897. #show table status;
  898. drop table t1,t2,t3;
  899. #
  900. # Test problem with refering to different fields in same table in UNION
  901. # (Bug #2552)
  902. #
  903. create table t1 (id int,  name char(10) not null,  name2 char(10) not null) engine=innodb;
  904. insert into t1 values(1,'first','fff'),(2,'second','sss'),(3,'third','ttt');
  905. select name2 from t1  union all  select name from t1 union all select id from t1;
  906. drop table t1;
  907. #
  908. # Bug2160
  909. #
  910. create table t1 (a int) engine=innodb;
  911. create table t2 like t1;
  912. drop table t1,t2;
  913. #
  914. # Test of automaticly created foreign keys
  915. #
  916. create table t1 (id int(11) not null, id2 int(11) not null, unique (id,id2)) engine=innodb;
  917. create table t2 (id int(11) not null, constraint t1_id_fk foreign key ( id ) references t1 (id)) engine = innodb;
  918. show create table t1;
  919. show create table t2;
  920. create index id on t2 (id);
  921. show create table t2;
  922. create index id2 on t2 (id);
  923. show create table t2;
  924. drop index id2 on t2;
  925. --error 1025,1025
  926. drop index id on t2;
  927. show create table t2;
  928. drop table t2;
  929. create table t2 (id int(11) not null, id2 int(11) not null, constraint t1_id_fk foreign key (id,id2) references t1 (id,id2)) engine = innodb;
  930. show create table t2;
  931. create unique index id on t2 (id,id2);
  932. show create table t2;
  933. drop table t2;
  934. # Check foreign key columns created in different order than key columns
  935. create table t2 (id int(11) not null, id2 int(11) not null, unique (id,id2),constraint t1_id_fk foreign key (id2,id) references t1 (id,id2)) engine = innodb;
  936. show create table t2;
  937. drop table t2;
  938. create table t2 (id int(11) not null, id2 int(11) not null, unique (id,id2), constraint t1_id_fk foreign key (id) references t1 (id)) engine = innodb;
  939. show create table t2;
  940. drop table t2;
  941. create table t2 (id int(11) not null, id2 int(11) not null, unique (id,id2),constraint t1_id_fk foreign key (id2,id) references t1 (id,id2)) engine = innodb;
  942. show create table t2;
  943. drop table t2;
  944. create table t2 (id int(11) not null auto_increment, id2 int(11) not null, constraint t1_id_fk foreign key (id) references t1 (id), primary key (id), index (id,id2)) engine = innodb;
  945. show create table t2;
  946. drop table t2;
  947. create table t2 (id int(11) not null auto_increment, id2 int(11) not null, constraint t1_id_fk foreign key (id) references t1 (id)) engine= innodb;
  948. show create table t2;
  949. alter table t2 add index id_test (id), add index id_test2 (id,id2);
  950. show create table t2;
  951. drop table t2;
  952. # Test error handling
  953. --replace_result \ / $MYSQL_TEST_DIR . /var/master-data/ /
  954. --error 1005
  955. create table t2 (id int(11) not null, id2 int(11) not null, constraint t1_id_fk foreign key (id2,id) references t1 (id)) engine = innodb;
  956. # bug#3749
  957. create table t2 (a int auto_increment primary key, b int, index(b), foreign key (b) references t1(id), unique(b)) engine=innodb;
  958. show create table t2;
  959. drop table t2;
  960. create table t2 (a int auto_increment primary key, b int, foreign key (b) references t1(id), foreign key (b) references t1(id), unique(b)) engine=innodb;
  961. show create table t2;
  962. drop table t2, t1;
  963. #
  964. # Let us test binlog_cache_use and binlog_cache_disk_use status vars.
  965. # Actually this test has nothing to do with innodb per se, it just requires
  966. # transactional table. 
  967. #
  968. show status like "binlog_cache_use";
  969. show status like "binlog_cache_disk_use";
  970. create table t1 (a int) engine=innodb;
  971. # Now we are going to create transaction which is long enough so its 
  972. # transaction binlog will be flushed to disk...
  973. let $1=2000;
  974. disable_query_log;
  975. begin;
  976. while ($1)
  977. {
  978.  eval insert into t1 values( $1 );
  979.  dec $1;
  980. }
  981. commit;
  982. enable_query_log;
  983. show status like "binlog_cache_use";
  984. show status like "binlog_cache_disk_use";
  985. # Transaction which should not be flushed to disk and so should not
  986. # increase binlog_cache_disk_use.
  987. begin;
  988. delete from t1;
  989. commit;
  990. show status like "binlog_cache_use";
  991. show status like "binlog_cache_disk_use";
  992. drop table t1;
  993. #
  994. # Bug #6126: Duplicate columns in keys gives misleading error message
  995. #
  996. --error 1060
  997. create table t1 (c char(10), index (c,c)) engine=innodb;
  998. --error 1060
  999. create table t1 (c1 char(10), c2 char(10), index (c1,c2,c1)) engine=innodb;
  1000. --error 1060
  1001. create table t1 (c1 char(10), c2 char(10), index (c1,c1,c2)) engine=innodb;
  1002. --error 1060
  1003. create table t1 (c1 char(10), c2 char(10), index (c2,c1,c1)) engine=innodb;
  1004. create table t1 (c1 char(10), c2 char(10)) engine=innodb;
  1005. --error 1060
  1006. alter table t1 add key (c1,c1);
  1007. --error 1060
  1008. alter table t1 add key (c2,c1,c1);
  1009. --error 1060
  1010. alter table t1 add key (c1,c2,c1);
  1011. --error 1060
  1012. alter table t1 add key (c1,c1,c2);
  1013. drop table t1;
  1014. #
  1015. # Bug #4082: integer truncation
  1016. #
  1017. create table t1(a int(1) , b int(1)) engine=innodb;
  1018. insert into t1 values ('1111', '3333');
  1019. select distinct concat(a, b) from t1;
  1020. drop table t1;
  1021. #
  1022. # BUG#7709 test case - Boolean fulltext query against unsupported 
  1023. #                      engines does not fail
  1024. #
  1025. CREATE TABLE t1 ( a char(10) ) ENGINE=InnoDB;
  1026. --error 1214
  1027. SELECT a FROM t1 WHERE MATCH (a) AGAINST ('test' IN BOOLEAN MODE);
  1028. DROP TABLE t1;
  1029. #
  1030. # check null values #1
  1031. #
  1032. --disable_warnings
  1033. CREATE TABLE t1 (a_id tinyint(4) NOT NULL default '0', PRIMARY KEY  (a_id)) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  1034. INSERT INTO t1 VALUES (1),(2),(3);
  1035. CREATE TABLE t2 (b_id tinyint(4) NOT NULL default '0',b_a tinyint(4) NOT NULL default '0', PRIMARY KEY  (b_id), KEY  (b_a), 
  1036.                 CONSTRAINT fk_b_a FOREIGN KEY (b_a) REFERENCES t1 (a_id) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  1037. --enable_warnings
  1038. INSERT INTO t2 VALUES (1,1),(2,1),(3,1),(4,2),(5,2);
  1039. SELECT * FROM (SELECT t1.*,GROUP_CONCAT(t2.b_id SEPARATOR ',') as b_list FROM (t1 LEFT JOIN (t2) on t1.a_id = t2.b_a) GROUP BY t1.a_id ) AS xyz;
  1040. DROP TABLE t2;
  1041. DROP TABLE t1;
  1042. #
  1043. # Bug#11816 - Truncate table doesn't work with temporary innodb tables
  1044. # This is not an innodb bug, but we test it using innodb.
  1045. #
  1046. create temporary table t1 (a int) engine=innodb;
  1047. insert into t1 values (4711);
  1048. truncate t1;
  1049. insert into t1 values (42);
  1050. select * from t1;
  1051. drop table t1;
  1052. # Show that it works with permanent tables too.
  1053. create table t1 (a int) engine=innodb;
  1054. insert into t1 values (4711);
  1055. truncate t1;
  1056. insert into t1 values (42);
  1057. select * from t1;
  1058. drop table t1;
  1059. #
  1060. # Bug #13025  Server crash during filesort
  1061. #
  1062. create table t1 (a int not null, b int not null, c blob not null, d int not null, e int, primary key (a,b,c(255),d)) engine=innodb;
  1063. insert into t1 values (2,2,"b",2,2),(1,1,"a",1,1),(3,3,"ab",3,3);
  1064. select * from t1 order by a,b,c,d;
  1065. explain select * from t1 order by a,b,c,d;
  1066. drop table t1;
  1067. #
  1068. # BUG#11039,#13218 Wrong key length in min()
  1069. #
  1070. create table t1 (a char(1), b char(1), key(a, b)) engine=innodb;
  1071. insert into t1 values ('8', '6'), ('4', '7');
  1072. select min(a) from t1;
  1073. select min(b) from t1 where a='8';
  1074. drop table t1;
  1075. #
  1076. # Test that checksum table uses a consistent read Bug #12669
  1077. #
  1078. connect (a,localhost,root,,);
  1079. connect (b,localhost,root,,);
  1080. connection a;
  1081. create table test_checksum(a int not null) engine=innodb DEFAULT CHARSET=latin1;
  1082. insert into test_checksum values (1),(2);
  1083. set autocommit=0;
  1084. checksum table test_checksum;
  1085. connection b;
  1086. insert into test_checksum values(3);
  1087. connection a;
  1088. #
  1089. # Here checksum should not see insert
  1090. #
  1091. checksum table test_checksum;
  1092. connection a;
  1093. commit;
  1094. checksum table test_checksum;
  1095. commit;
  1096. drop table test_checksum;
  1097. #
  1098. # autocommit = 1
  1099. #
  1100. connection a;
  1101. create table test_checksum(a int not null) engine=innodb DEFAULT CHARSET=latin1;
  1102. insert into test_checksum values (1),(2);
  1103. set autocommit=1;
  1104. checksum table test_checksum;
  1105. connection b;
  1106. set autocommit=1;
  1107. insert into test_checksum values(3);
  1108. connection a;
  1109. #
  1110. # Here checksum sees insert
  1111. #
  1112. checksum table test_checksum;
  1113. drop table test_checksum;
  1114. # End of 4.1 tests