58
CREATE TEMPORARY TABLE t1 (
59
id int NOT NULL default '0',
60
category_id int NOT NULL default '0',
61
type_id int NOT NULL default '0',
59
id int(11) unsigned NOT NULL default '0',
60
category_id tinyint(4) unsigned NOT NULL default '0',
61
type_id tinyint(4) unsigned NOT NULL default '0',
62
62
body text NOT NULL,
63
user_id int NOT NULL default '0',
63
user_id int(11) unsigned NOT NULL default '0',
64
64
status enum('new','old') NOT NULL default 'new',
72
# The following combination found a hang-bug in MyISAM
75
CREATE TABLE t1 (AnamneseId int(10) unsigned NOT NULL auto_increment,B BLOB,PRIMARY KEY (AnamneseId)) engine=myisam;
76
insert into t1 values (null,"hello");
78
ALTER TABLE t1 ADD Column new_col int not null;
72
84
# Drop and add an auto_increment column
75
create table t1 (i int not null auto_increment primary key);
87
create table t1 (i int unsigned not null auto_increment primary key);
76
88
insert into t1 values (null),(null),(null),(null);
77
alter table t1 drop i,add i int not null auto_increment, drop primary key, add primary key (i);
89
alter table t1 drop i,add i int unsigned not null auto_increment, drop primary key, add primary key (i);
167
# Test ALTER TABLE ENABLE/DISABLE keys when things are locked
171
Host varchar(16) binary NOT NULL default '',
172
User varchar(16) binary NOT NULL default '',
173
PRIMARY KEY (Host,User)
176
ALTER TABLE t1 DISABLE KEYS;
177
LOCK TABLES t1 WRITE;
178
INSERT INTO t1 VALUES ('localhost','root'),('localhost',''),('games','monty');
180
ALTER TABLE t1 ENABLE KEYS;
155
186
# Test with two keys
158
CREATE TEMPORARY TABLE t1 (
159
Host varchar(16) NOT NULL default '',
160
User varchar(16) NOT NULL default '',
190
Host varchar(16) binary NOT NULL default '',
191
User varchar(16) binary NOT NULL default '',
161
192
PRIMARY KEY (Host,User),
165
196
ALTER TABLE t1 DISABLE KEYS;
166
197
SHOW INDEX FROM t1;
198
LOCK TABLES t1 WRITE;
167
199
INSERT INTO t1 VALUES ('localhost','root'),('localhost','');
168
200
SHOW INDEX FROM t1;
169
201
ALTER TABLE t1 ENABLE KEYS;
170
202
SHOW INDEX FROM t1;
206
# Test RENAME with LOCK TABLES
207
LOCK TABLES t1 WRITE;
174
208
ALTER TABLE t1 RENAME t2;
175
210
select * from t2;
217
Host varchar(16) binary NOT NULL default '',
218
User varchar(16) binary NOT NULL default '',
219
PRIMARY KEY (Host,User),
223
LOCK TABLES t1 WRITE;
224
ALTER TABLE t1 DISABLE KEYS;
179
229
# BUG#4717 - check for valid table names
181
231
create table t1 (a int);
199
249
# The following is also part of bug #6236 (CREATE TABLE didn't properly count
200
250
# not null columns for primary keys)
202
create TEMPORARY 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;
203
insert into t1 (a,b,c,d,e,f,g,h,i) values(1,1,1,1,1,1,1,1,1);
204
--replace_column 3 X 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
252
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;
253
insert into t1 (a) values(1);
254
--replace_column 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
205
255
show table status like 't1';
206
256
alter table t1 modify a int;
207
--replace_column 3 X 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
257
--replace_column 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
208
258
show table status like 't1';
210
create TEMPORARY table t1 (a int not null default 0, b int not null default 0, c int not null default 0, d int not null default 0, e int not null default 0, f int not null default 0, g int not null default 0, h int not null default 0,i int not null default 0, primary key (a,b,c,d,e,f,g,i,h)) engine=MyISAM;
260
create table t1 (a int not null default 0, b int not null default 0, c int not null default 0, d int not null default 0, e int not null default 0, f int not null default 0, g int not null default 0, h int not null default 0,i int not null default 0, primary key (a,b,c,d,e,f,g,i,h)) engine=MyISAM;
211
261
insert into t1 (a) values(1);
212
--replace_column 3 X 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
262
--replace_column 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
213
263
show table status like 't1';
267
# Test that data get converted when character set is changed
268
# Test that data doesn't get converted when src or dst is BINARY/BLOB
271
create table t1 (a char(10) character set koi8r);
272
insert into t1 values ('����');
273
select a,hex(a) from t1;
274
alter table t1 change a a char(10) character set cp1251;
275
select a,hex(a) from t1;
276
alter table t1 change a a binary(4);
277
select a,hex(a) from t1;
278
alter table t1 change a a char(10) character set cp1251;
279
select a,hex(a) from t1;
280
alter table t1 change a a char(10) character set koi8r;
281
select a,hex(a) from t1;
282
alter table t1 change a a varchar(10) character set cp1251;
283
select a,hex(a) from t1;
284
alter table t1 change a a char(10) character set koi8r;
285
select a,hex(a) from t1;
286
alter table t1 change a a text character set cp1251;
287
select a,hex(a) from t1;
288
alter table t1 change a a char(10) character set koi8r;
289
select a,hex(a) from t1;
293
# Test ALTER TABLE .. CHARACTER SET ..
295
show create table t1;
296
alter table t1 DEFAULT CHARACTER SET latin1;
297
show create table t1;
298
alter table t1 CONVERT TO CHARACTER SET latin1;
299
show create table t1;
300
alter table t1 DEFAULT CHARACTER SET cp1251;
301
show create table t1;
307
# Test that table CHARACTER SET does not affect blobs
309
create table t1 (myblob longblob,mytext longtext)
310
default charset latin1 collate latin1_general_cs;
311
show create table t1;
312
alter table t1 character set latin2;
313
show create table t1;
217
317
# Bug 2361 (Don't drop UNIQUE with DROP PRIMARY KEY)
220
320
CREATE TABLE t1 (a int PRIMARY KEY, b INT UNIQUE);
221
321
ALTER TABLE t1 DROP PRIMARY KEY;
222
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
223
322
SHOW CREATE TABLE t1;
224
323
--error ER_CANT_DROP_FIELD_OR_KEY
225
324
ALTER TABLE t1 DROP PRIMARY KEY;
237
336
# BUG 12207 alter table ... discard table space on MyISAM table causes ERROR 2013 (HY000)
239
338
# Some platforms (Mac OS X, Windows) will send the error message using small letters.
240
CREATE TEMPORARY TABLE T12207(a int) ENGINE=MYISAM;
339
CREATE TABLE T12207(a int) ENGINE=MYISAM;
241
340
--replace_result t12207 T12207
242
341
--error ER_ILLEGAL_HA
243
342
ALTER TABLE T12207 DISCARD TABLESPACE;
244
343
DROP TABLE T12207;
346
# Bug #6479 ALTER TABLE ... changing charset fails for TEXT columns
348
# The column's character set was changed but the actual data was not
349
# modified. In other words, the values were reinterpreted
350
# as UTF8 instead of being converted.
351
create table t1 (a text) character set koi8r;
352
insert into t1 values (_koi8r'����');
353
select hex(a) from t1;
354
alter table t1 convert to character set cp1251;
355
select hex(a) from t1;
247
359
# Test for bug #7884 "Able to add invalid unique index on TIMESTAMP prefix"
248
360
# MySQL should not think that packed field with non-zero decimals is
249
361
# geometry field and allow to create prefix index which is
574
685
# Bug#18038 MySQL server corrupts binary columns data
577
CREATE TABLE t1 (s CHAR(8));
688
CREATE TABLE t1 (s CHAR(8) BINARY);
578
689
INSERT INTO t1 VALUES ('test');
579
690
SELECT LENGTH(s) FROM t1;
580
ALTER TABLE t1 MODIFY s CHAR(10);
691
ALTER TABLE t1 MODIFY s CHAR(10) BINARY;
581
692
SELECT LENGTH(s) FROM t1;
584
CREATE TABLE t1 (s varbinary(8));
695
CREATE TABLE t1 (s BINARY(8));
585
696
INSERT INTO t1 VALUES ('test');
586
697
SELECT LENGTH(s) FROM t1;
587
698
SELECT HEX(s) FROM t1;
588
ALTER TABLE t1 MODIFY s varbinary(10);
699
ALTER TABLE t1 MODIFY s BINARY(10);
589
700
SELECT HEX(s) FROM t1;
590
701
SELECT LENGTH(s) FROM t1;
606
717
--echo End of 5.0 tests
720
# Extended test coverage for ALTER TABLE behaviour under LOCK TABLES
721
# It should be consistent across all platforms and for all engines
722
# (Before 5.1 this was not true as behavior was different between
723
# Unix/Windows and transactional/non-transactional tables).
724
# See also innodb_mysql.test
727
drop table if exists t1, t2, t3;
729
create table t1 (i int);
730
create table t3 (j int);
731
insert into t1 values ();
732
insert into t3 values ();
733
# Table which is altered under LOCK TABLES it should stay in list of locked
734
# tables and be available after alter takes place unless ALTER contains RENAME
735
# clause. We should see the new definition of table, of course.
736
lock table t1 write, t3 read;
737
# Example of so-called 'fast' ALTER TABLE
738
alter table t1 modify i int default 1;
739
insert into t1 values ();
741
# And now full-blown ALTER TABLE
742
alter table t1 change i c char(10) default "Two";
743
insert into t1 values ();
745
# If table is renamed then it should be removed from the list
746
# of locked tables. 'Fast' ALTER TABLE with RENAME clause:
747
alter table t1 modify c char(10) default "Three", rename to t2;
748
--error ER_TABLE_NOT_LOCKED
750
--error ER_TABLE_NOT_LOCKED
754
insert into t2 values ();
756
lock table t2 write, t3 read;
757
# Full ALTER TABLE with RENAME
758
alter table t2 change c vc varchar(100) default "Four", rename to t1;
759
--error ER_TABLE_NOT_LOCKED
761
--error ER_TABLE_NOT_LOCKED
765
insert into t1 values ();
609
771
# Bug#18775 - Temporary table from alter table visible to other threads
611
773
# Check if special characters work and duplicates are detected.
684
841
INSERT INTO t1 VALUES (1, "edno"), (1, "edno"), (2, "dve"), (3, "tri"), (5, "pet");
685
842
--echo "Non-copy data change - new frm, but old data and index files"
686
ALTER TABLE t1 CHANGE int_field unsigned_int_field INTEGER NOT NULL, RENAME t2;
844
CHANGE int_field unsigned_int_field INTEGER UNSIGNED NOT NULL,
688
847
--error ER_NO_SUCH_TABLE
689
848
SELECT * FROM t1 ORDER BY int_field;
690
849
SELECT * FROM t2 ORDER BY unsigned_int_field;
693
ALTER TABLE t2 MODIFY unsigned_int_field BIGINT NOT NULL;
852
ALTER TABLE t2 MODIFY unsigned_int_field BIGINT UNSIGNED NOT NULL;