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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of auto_increment;  The test for BDB tables is in bdb.test
  3. #
  4. --disable_warnings
  5. drop table if exists t1;
  6. drop table if exists t2;
  7. --enable_warnings
  8. SET SQL_WARNINGS=1;
  9. create table t1 (a int not null auto_increment,b int, primary key (a)) engine=myisam auto_increment=3;
  10. insert into t1 values (1,1),(NULL,3),(NULL,4);
  11. delete from t1 where a=4;
  12. insert into t1 values (NULL,5),(NULL,6);
  13. select * from t1;
  14. delete from t1 where a=6;
  15. #show table status like "t1";
  16. replace t1 values (3,1);
  17. ALTER TABLE t1 add c int;
  18. replace t1 values (3,3,3);
  19. insert into t1 values (NULL,7,7);
  20. update t1 set a=8,b=b+1,c=c+1 where a=7;
  21. insert into t1 values (NULL,9,9);
  22. select * from t1;
  23. drop table t1;
  24. create table t1 (
  25.   skey tinyint unsigned NOT NULL auto_increment PRIMARY KEY,
  26.   sval char(20)
  27. );
  28. insert into t1 values (NULL, "hello");
  29. insert into t1 values (NULL, "hey");
  30. select * from t1;
  31. select _rowid,t1._rowid,skey,sval from t1;
  32. drop table t1;
  33. #
  34. # Test auto_increment on sub key
  35. #
  36. create table t1 (a char(10) not null, b int not null auto_increment, primary key(a,b));
  37. insert into t1 values ("a",1),("b",2),("a",2),("c",1);
  38. insert into t1 values ("a",NULL),("b",NULL),("c",NULL),("e",NULL);
  39. insert into t1 (a) values ("a"),("b"),("c"),("d");
  40. insert into t1 (a) values ('k'),('d');
  41. insert into t1 (a) values ("a");
  42. insert into t1 values ("d",last_insert_id());
  43. select * from t1;
  44. drop table t1;
  45. create table t1 (ordid int(8) not null auto_increment, ord  varchar(50) not null, primary key (ordid), index(ord,ordid)); 
  46. insert into t1 (ordid,ord) values (NULL,'sdj'),(NULL,'sdj');
  47. select * from t1;
  48. drop table t1;
  49. create table t1 (ordid int(8) not null auto_increment, ord  varchar(50) not null, primary key (ord,ordid));
  50. insert into t1 values (NULL,'sdj'),(NULL,'sdj'),(NULL,"abc"),(NULL,'abc'),(NULL,'zzz'),(NULL,'sdj'),(NULL,'abc');
  51. select * from t1;
  52. drop table t1;
  53. create table t1 (sid char(5), id int(2) NOT NULL auto_increment, key(sid,  id));
  54. create table t2 (sid char(20), id int(2));
  55. insert into t2 values ('skr',NULL),('skr',NULL),('test',NULL);
  56. insert into t1 select * from t2;
  57. select * from t1;
  58. drop table t1,t2;
  59. #
  60. # Test of auto_increment columns when they are set to 0
  61. #
  62. create table t1 (a int not null primary key auto_increment);
  63. insert into t1 values (0);
  64. update t1 set a=0;
  65. select * from t1;
  66. check table t1;
  67. drop table t1;
  68. #
  69. # Test negative values (Bug #1366)
  70. #
  71. create table t1 (a int not null auto_increment primary key);
  72. insert into t1 values (NULL);
  73. insert into t1 values (-1);
  74. select last_insert_id();
  75. insert into t1 values (NULL);
  76. select * from t1;
  77. drop table t1;
  78. create table t1 (a int not null auto_increment primary key) /*!40102 engine=heap */;
  79. insert into t1 values (NULL);
  80. insert into t1 values (-1);
  81. select last_insert_id();
  82. insert into t1 values (NULL);
  83. select * from t1;
  84. drop table t1;
  85. #
  86. # last_insert_id() madness
  87. #
  88. create table t1 (i tinyint unsigned not null auto_increment primary key);
  89. insert into t1 set i = 254;
  90. insert into t1 set i = null;
  91. select last_insert_id();
  92. explain extended select last_insert_id();
  93. --error 1062
  94. insert into t1 set i = 254;
  95. select last_insert_id();
  96. --error 1062
  97. insert into t1 set i = null;
  98. select last_insert_id();
  99. drop table t1;
  100. create table t1 (i tinyint unsigned not null auto_increment, key (i));
  101. insert into t1 set i = 254;
  102. insert into t1 set i = null;
  103. select last_insert_id();
  104. insert into t1 set i = null;
  105. select last_insert_id();
  106. drop table t1;
  107. create table t1 (i tinyint unsigned not null auto_increment primary key, b int, unique (b));
  108. insert into t1 values (NULL, 10);
  109. select last_insert_id();
  110. insert into t1 values (NULL, 15);
  111. select last_insert_id();
  112. --error 1062
  113. insert into t1 values (NULL, 10);
  114. select last_insert_id();
  115. drop table t1;
  116. create table t1(a int auto_increment,b int null,primary key(a));
  117. SET SQL_MODE=NO_AUTO_VALUE_ON_ZERO;
  118. insert into t1(a,b)values(NULL,1);
  119. insert into t1(a,b)values(200,2);
  120. insert into t1(a,b)values(0,3);
  121. insert into t1(b)values(4);
  122. insert into t1(b)values(5);
  123. insert into t1(b)values(6);
  124. insert into t1(b)values(7);
  125. select * from t1 order by b;
  126. alter table t1 modify b mediumint;
  127. select * from t1 order by b;
  128. create table t2 (a int);
  129. insert t2 values (1),(2);
  130. alter table t2 add b int auto_increment primary key;
  131. select * from t2;
  132. drop table t2;
  133. delete from t1 where a=0;
  134. update t1 set a=0 where b=5;
  135. select * from t1 order by b;
  136. delete from t1 where a=0;
  137. update t1 set a=NULL where b=6;
  138. update t1 set a=300 where b=7;
  139. SET SQL_MODE='';
  140. insert into t1(a,b)values(NULL,8);
  141. insert into t1(a,b)values(400,9);
  142. insert into t1(a,b)values(0,10);
  143. insert into t1(b)values(11);
  144. insert into t1(b)values(12);
  145. insert into t1(b)values(13);
  146. insert into t1(b)values(14);
  147. select * from t1 order by b;
  148. delete from t1 where a=0;
  149. update t1 set a=0 where b=12;
  150. select * from t1 order by b;
  151. delete from t1 where a=0;
  152. update t1 set a=NULL where b=13;
  153. update t1 set a=500 where b=14;
  154. select * from t1 order by b;
  155. drop table t1;
  156. #
  157. # Test of behavior of ALTER TABLE when coulmn containing NULL or zeroes is
  158. # converted to AUTO_INCREMENT column
  159. #
  160. create table t1 (a bigint);
  161. insert into t1 values (1), (2), (3), (NULL), (NULL);
  162. alter table t1 modify a bigint not null auto_increment primary key; 
  163. select * from t1;
  164. drop table t1;
  165. create table t1 (a bigint);
  166. insert into t1 values (1), (2), (3), (0), (0);
  167. alter table t1 modify a bigint not null auto_increment primary key; 
  168. select * from t1;
  169. drop table t1;
  170. # We still should be able to preserve zero in NO_AUTO_VALUE_ON_ZERO mode
  171. create table t1 (a bigint);
  172. insert into t1 values (0), (1), (2), (3);
  173. set sql_mode=NO_AUTO_VALUE_ON_ZERO;
  174. alter table t1 modify a bigint not null auto_increment primary key; 
  175. set sql_mode= '';
  176. select * from t1;
  177. drop table t1;
  178. # It also sensible to preserve zeroes if we are converting auto_increment
  179. # column to auto_increment column (or not touching it at all, which is more
  180. # common case probably)
  181. create table t1 (a int auto_increment primary key , b int null);
  182. set sql_mode=NO_AUTO_VALUE_ON_ZERO;
  183. insert into t1 values (0,1),(1,2),(2,3);
  184. select * from t1;
  185. set sql_mode= '';
  186. alter table t1 modify b varchar(255);
  187. insert into t1 values (0,4);
  188. select * from t1;
  189. drop table t1;
  190. #
  191. # BUG #10045: Problem with composite AUTO_INCREMENT + BLOB key
  192. CREATE TABLE t1 ( a INT AUTO_INCREMENT, b BLOB, PRIMARY KEY (a,b(10)));
  193. INSERT INTO t1 (b) VALUES ('aaaa');
  194. CHECK TABLE t1;
  195. INSERT INTO t1 (b) VALUES ('');
  196. CHECK TABLE t1;
  197. INSERT INTO t1 (b) VALUES ('bbbb');
  198. CHECK TABLE t1;
  199. DROP TABLE IF EXISTS t1;
  200. # End of 4.1 tests