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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of alter table
  3. #
  4. --disable_warnings
  5. drop table if exists t1,t2;
  6. drop database if exists mysqltest;
  7. --enable_warnings
  8. create table t1 (
  9. col1 int not null auto_increment primary key,
  10. col2 varchar(30) not null,
  11. col3 varchar (20) not null,
  12. col4 varchar(4) not null,
  13. col5 enum('PENDING', 'ACTIVE', 'DISABLED') not null,
  14. col6 int not null, to_be_deleted int);
  15. insert into t1 values (2,4,3,5,"PENDING",1,7);
  16. alter table t1
  17. add column col4_5 varchar(20) not null after col4,
  18. add column col7 varchar(30) not null after col5,
  19. add column col8 datetime not null, drop column to_be_deleted,
  20. change column col2 fourth varchar(30) not null after col3,
  21. modify column col6 int not null first;
  22. select * from t1;
  23. drop table t1;
  24. create table t1 (bandID MEDIUMINT UNSIGNED NOT NULL PRIMARY KEY, payoutID SMALLINT UNSIGNED NOT NULL);
  25. insert into t1 (bandID,payoutID) VALUES (1,6),(2,6),(3,4),(4,9),(5,10),(6,1),(7,12),(8,12);
  26. alter table t1 add column new_col int, order by payoutid,bandid;
  27. select * from t1;
  28. alter table t1 order by bandid,payoutid;
  29. select * from t1;
  30. drop table t1;
  31. # Check that pack_keys and dynamic length rows are not forced. 
  32. CREATE TABLE t1 (
  33. GROUP_ID int(10) unsigned DEFAULT '0' NOT NULL,
  34. LANG_ID smallint(5) unsigned DEFAULT '0' NOT NULL,
  35. NAME varchar(80) DEFAULT '' NOT NULL,
  36. PRIMARY KEY (GROUP_ID,LANG_ID),
  37. KEY NAME (NAME));
  38. #show table status like "t1";
  39. ALTER TABLE t1 CHANGE NAME NAME CHAR(80) not null;
  40. --replace_column 8 #
  41. SHOW FULL COLUMNS FROM t1;
  42. DROP TABLE t1;
  43. #
  44. # Test of ALTER TABLE ... ORDER BY
  45. #
  46. create table t1 (n int);
  47. insert into t1 values(9),(3),(12),(10);
  48. alter table t1 order by n;
  49. select * from t1;
  50. drop table t1;
  51. CREATE TABLE t1 (
  52.   id int(11) unsigned NOT NULL default '0',
  53.   category_id tinyint(4) unsigned NOT NULL default '0',
  54.   type_id tinyint(4) unsigned NOT NULL default '0',
  55.   body text NOT NULL,
  56.   user_id int(11) unsigned NOT NULL default '0',
  57.   status enum('new','old') NOT NULL default 'new',
  58.   PRIMARY KEY (id)
  59. ) ENGINE=MyISAM;
  60. ALTER TABLE t1 ORDER BY t1.id, t1.status, t1.type_id, t1.user_id, t1.body;
  61. DROP TABLE t1;
  62. #
  63. # The following combination found a hang-bug in MyISAM
  64. #
  65. CREATE TABLE t1 (AnamneseId int(10) unsigned NOT NULL auto_increment,B BLOB,PRIMARY KEY (AnamneseId)) engine=myisam;
  66. insert into t1 values (null,"hello");
  67. LOCK TABLES t1 WRITE;
  68. ALTER TABLE t1 ADD Column new_col int not null;
  69. UNLOCK TABLES;
  70. OPTIMIZE TABLE t1;
  71. DROP TABLE t1;
  72. #
  73. # Drop and add an auto_increment column
  74. #
  75. create table t1 (i int unsigned not null auto_increment primary key);
  76. insert into t1 values (null),(null),(null),(null);
  77. alter table t1 drop i,add i int unsigned not null auto_increment, drop primary key, add primary key (i);
  78. select * from t1;
  79. drop table t1;
  80. #
  81. # Bug #2628: 'alter table t1 rename mysqltest.t1' silently drops mysqltest.t1 
  82. # if it exists
  83. #
  84. create table t1 (name char(15));
  85. insert into t1 (name) values ("current");
  86. create database mysqltest;
  87. create table mysqltest.t1 (name char(15));
  88. insert into mysqltest.t1 (name) values ("mysqltest");
  89. select * from t1;
  90. select * from mysqltest.t1;
  91. --error 1050
  92. alter table t1 rename mysqltest.t1;
  93. select * from t1;
  94. select * from mysqltest.t1;
  95. drop table t1;
  96. drop database mysqltest;
  97. #
  98. # ALTER TABLE ... ENABLE/DISABLE KEYS
  99. create table t1 (n1 int not null, n2 int, n3 int, n4 float,
  100.                 unique(n1),
  101.                 key (n1, n2, n3, n4),
  102.                 key (n2, n3, n4, n1),
  103.                 key (n3, n4, n1, n2),
  104.                 key (n4, n1, n2, n3) );
  105. alter table t1 disable keys;
  106. show keys from t1;
  107. #let $1=10000;
  108. let $1=10;
  109. while ($1)
  110. {
  111.  eval insert into t1 values($1,RAND()*1000,RAND()*1000,RAND());
  112.  dec $1;
  113. }
  114. alter table t1 enable keys;
  115. show keys from t1;
  116. drop table t1;
  117. #
  118. # Alter table and rename
  119. #
  120. create table t1 (i int unsigned not null auto_increment primary key);
  121. alter table t1 rename t2;
  122. alter table t2 rename t1, add c char(10) comment "no comment";
  123. show columns from t1;
  124. drop table t1;
  125. # implicit analyze
  126. create table t1 (a int, b int);
  127. let $1=100;
  128. while ($1)
  129. {
  130.  eval insert into t1 values(1,$1), (2,$1), (3, $1);
  131.  dec $1;
  132. }
  133. alter table t1 add unique (a,b), add key (b);
  134. show keys from t1;
  135. analyze table t1;
  136. show keys from t1;
  137. drop table t1;
  138. #
  139. # Test of ALTER TABLE DELAYED
  140. #
  141. CREATE TABLE t1 (i int(10), index(i) );
  142. ALTER TABLE t1 DISABLE KEYS;
  143. INSERT DELAYED INTO t1 VALUES(1),(2),(3);
  144. ALTER TABLE t1 ENABLE KEYS;
  145. drop table t1;
  146. #
  147. # Test ALTER TABLE ENABLE/DISABLE keys when things are locked
  148. #
  149. CREATE TABLE t1 (
  150.   Host varchar(16) binary NOT NULL default '',
  151.   User varchar(16) binary NOT NULL default '',
  152.   PRIMARY KEY  (Host,User)
  153. ) ENGINE=MyISAM;
  154. ALTER TABLE t1 DISABLE KEYS;
  155. LOCK TABLES t1 WRITE;
  156. INSERT INTO t1 VALUES ('localhost','root'),('localhost',''),('games','monty');
  157. SHOW INDEX FROM t1;
  158. ALTER TABLE t1 ENABLE KEYS;
  159. UNLOCK TABLES;
  160. CHECK TABLES t1;
  161. DROP TABLE t1;
  162. #
  163. # Test with two keys
  164. #
  165. CREATE TABLE t1 (
  166.   Host varchar(16) binary NOT NULL default '',
  167.   User varchar(16) binary NOT NULL default '',
  168.   PRIMARY KEY  (Host,User),
  169.   KEY  (Host)
  170. ) ENGINE=MyISAM;
  171. ALTER TABLE t1 DISABLE KEYS;
  172. SHOW INDEX FROM t1;
  173. LOCK TABLES t1 WRITE;
  174. INSERT INTO t1 VALUES ('localhost','root'),('localhost','');
  175. SHOW INDEX FROM t1;
  176. ALTER TABLE t1 ENABLE KEYS;
  177. SHOW INDEX FROM t1;
  178. UNLOCK TABLES;
  179. CHECK TABLES t1;
  180. # Test RENAME with LOCK TABLES
  181. LOCK TABLES t1 WRITE;
  182. ALTER TABLE t1 RENAME t2;
  183. UNLOCK TABLES;
  184. select * from t2;
  185. DROP TABLE t2;
  186. #
  187. # Test disable keys with locking
  188. #
  189. CREATE TABLE t1 (
  190.   Host varchar(16) binary NOT NULL default '',
  191.   User varchar(16) binary NOT NULL default '',
  192.   PRIMARY KEY  (Host,User),
  193.   KEY  (Host)
  194. ) ENGINE=MyISAM;
  195. LOCK TABLES t1 WRITE;
  196. ALTER TABLE t1 DISABLE KEYS;
  197. SHOW INDEX FROM t1;
  198. DROP TABLE t1;
  199. #
  200. # BUG#4717 - check for valid table names
  201. #
  202. create table t1 (a int);
  203. --error 1103
  204. alter table t1 rename to `t1\`;
  205. --error 1103
  206. rename table t1 to `t1\`;
  207. drop table t1;
  208. #
  209. # BUG#6236 - ALTER TABLE MODIFY should set implicit NOT NULL on PK columns
  210. #
  211. drop table if exists t1, t2;
  212. create table t1 ( a varchar(10) not null primary key ) engine=myisam;
  213. create table t2 ( a varchar(10) not null primary key ) engine=merge union=(t1);
  214. flush tables;
  215. alter table t1 modify a varchar(10);
  216. show create table t2;
  217. flush tables;
  218. alter table t1 modify a varchar(10) not null;
  219. show create table t2;
  220. drop table if exists t1, t2;
  221. # The following is also part of bug #6236 (CREATE TABLE didn't properly count
  222. # not null columns for primary keys)
  223. create table t1 (a int, b int, c int, d int, e int, f int, g int, h int,i int, primary key (a,b,c,d,e,f,g,i,h)) engine=MyISAM;
  224. insert into t1 (a) values(1);
  225. --replace_column 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
  226. show table status like 't1';
  227. alter table t1 modify a int;
  228. --replace_column 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
  229. show table status like 't1';
  230. drop table t1;
  231. create table t1 (a int not null, b int not null, c int not null, d int not null, e int not null, f int not null, g int not null, h int not null,i int not null, primary key (a,b,c,d,e,f,g,i,h)) engine=MyISAM;
  232. insert into t1 (a) values(1);
  233. --replace_column 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
  234. show table status like 't1';
  235. drop table t1;
  236. #
  237. # Test that data get converted when character set is changed
  238. # Test that data doesn't get converted when src or dst is BINARY/BLOB
  239. #
  240. set names koi8r;
  241. create table t1 (a char(10) character set koi8r);
  242. insert into t1 values ('耘釉');
  243. select a,hex(a) from t1;
  244. alter table t1 change a a char(10) character set cp1251;
  245. select a,hex(a) from t1;
  246. alter table t1 change a a binary(10);
  247. select a,hex(a) from t1;
  248. alter table t1 change a a char(10) character set cp1251;
  249. select a,hex(a) from t1;
  250. alter table t1 change a a char(10) character set koi8r;
  251. select a,hex(a) from t1;
  252. alter table t1 change a a varchar(10) character set cp1251;
  253. select a,hex(a) from t1;
  254. alter table t1 change a a char(10) character set koi8r;
  255. select a,hex(a) from t1;
  256. alter table t1 change a a text character set cp1251;
  257. select a,hex(a) from t1;
  258. alter table t1 change a a char(10) character set koi8r;
  259. select a,hex(a) from t1;
  260. delete from t1;
  261. #
  262. # Test ALTER TABLE .. CHARACTER SET ..
  263. #
  264. show create table t1;
  265. alter table t1 DEFAULT CHARACTER SET latin1;
  266. show create table t1;
  267. alter table t1 CONVERT TO CHARACTER SET latin1;
  268. show create table t1;
  269. alter table t1 DEFAULT CHARACTER SET cp1251;
  270. show create table t1;
  271. drop table t1;
  272. #
  273. # Bug#2821
  274. # Test that table CHARACTER SET does not affect blobs
  275. #
  276. create table t1 (myblob longblob,mytext longtext) 
  277. default charset latin1 collate latin1_general_cs;
  278. show create table t1;
  279. alter table t1 character set latin2;
  280. show create table t1;
  281. drop table t1;
  282. #
  283. # Bug 2361 (Don't drop UNIQUE with DROP PRIMARY KEY)
  284. #
  285. CREATE TABLE t1 (a int PRIMARY KEY, b INT UNIQUE);
  286. ALTER TABLE t1 DROP PRIMARY KEY;
  287. SHOW CREATE TABLE t1;
  288. --error 1091
  289. ALTER TABLE t1 DROP PRIMARY KEY;
  290. DROP TABLE t1;
  291. # BUG#3899
  292. create table t1 (a int, b int, key(a));
  293. insert into t1 values (1,1), (2,2);
  294. --error 1091
  295. alter table t1 drop key no_such_key;
  296. alter table t1 drop key a;
  297. drop table t1;
  298. #
  299. # Bug #6479  ALTER TABLE ... changing charset fails for TEXT columns
  300. #
  301. # The column's character set was changed but the actual data was not
  302. # modified. In other words, the values were reinterpreted
  303. # as UTF8 instead of being converted.
  304. create table t1 (a text) character set koi8r;
  305. insert into t1 values (_koi8r'耘釉');
  306. select hex(a) from t1;
  307. alter table t1 convert to character set cp1251;
  308. select hex(a) from t1;
  309. drop table t1;
  310. #
  311. # Test for bug #7884 "Able to add invalid unique index on TIMESTAMP prefix"
  312. # MySQL should not think that packed field with non-zero decimals is
  313. # geometry field and allow to create prefix index which is
  314. # shorter than packed field length.
  315. #
  316. create table t1 ( a timestamp );
  317. --error 1089
  318. alter table t1 add unique ( a(1) );
  319. drop table t1;
  320. #
  321. # Bug#11493 - Alter table rename to default database does not work without
  322. #             db name qualifying
  323. #
  324. create database mysqltest1;
  325. create table t1 (c1 int);
  326. # Move table to other database.
  327. alter table t1 rename mysqltest1.t1;
  328. # Assure that it has moved.
  329. --error 1051
  330. drop table t1;
  331. # Move table back.
  332. alter table mysqltest1.t1 rename t1;
  333. # Assure that it is back.
  334. drop table t1;
  335. # Now test for correct message if no database is selected.
  336. # Create t1 in 'test'.
  337. create table t1 (c1 int);
  338. # Change to other db.
  339. use mysqltest1;
  340. # Drop the current db. This de-selects any db.
  341. drop database mysqltest1;
  342. # Now test for correct message.
  343. --error 1046
  344. alter table test.t1 rename t1;
  345. # Check that explicit qualifying works even with no selected db.
  346. alter table test.t1 rename test.t1;
  347. # Go back to standard 'test' db.
  348. use test;
  349. drop table t1;
  350. # End of 4.1 tests