~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/alter_table.test

  • Committer: Brian Aker
  • Date: 2011-02-07 23:29:10 UTC
  • mto: (2154.2.1 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110207232910-lpkg95qal61supfh
Move ha_data out.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
col5 enum('PENDING', 'ACTIVE', 'DISABLED') not null,
15
15
col6 int not null, to_be_deleted int);
16
16
insert into t1 values (2,4,3,5,"PENDING",1,7);
 
17
SELECT * FROM t1;
 
18
 
 
19
--error ER_INVALID_ALTER_TABLE_FOR_NOT_NULL
17
20
alter table t1
18
21
add column col4_5 varchar(20) not null after col4,
19
22
add column col7 varchar(30) not null after col5,
20
 
add column col8 datetime not null, drop column to_be_deleted,
21
 
change column col2 fourth varchar(30) not null after col3,
22
 
modify column col6 int not null first;
 
23
add column col8 datetime not null default '1000-01-01 00:00:00', drop column to_be_deleted,
 
24
change column col2 fourth varchar(30) not null after col3,
 
25
modify column col6 int not null first;
 
26
 
 
27
alter table t1
 
28
add column col4_5 varchar(20) DEFAULT "added" not null after col4,
 
29
add column col7 varchar(30) DEFAULT "added" not null after col5,
 
30
add column col8 datetime not null default '1000-01-01 00:00:00',
 
31
drop column to_be_deleted,
 
32
change column col2 fourth varchar(30) not null after col3,
 
33
modify column col6 int not null first;
 
34
 
23
35
select * from t1;
24
36
drop table t1;
25
37
 
39
51
NAME varchar(80) DEFAULT '' NOT NULL,
40
52
PRIMARY KEY (GROUP_ID,LANG_ID),
41
53
KEY NAME (NAME));
42
 
#show table status like "t1";
 
54
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
43
55
ALTER TABLE t1 CHANGE NAME NAME CHAR(80) not null;
44
56
--replace_column 8 #
45
57
show COLUMNS FROM t1;
163
175
) ENGINE=MyISAM;
164
176
 
165
177
ALTER TABLE t1 DISABLE KEYS;
166
 
SHOW INDEX FROM t1;
 
178
#SHOW INDEX FROM t1;
167
179
INSERT INTO t1 VALUES ('localhost','root'),('localhost','');
168
 
SHOW INDEX FROM t1;
 
180
#SHOW INDEX FROM t1;
169
181
ALTER TABLE t1 ENABLE KEYS;
170
 
SHOW INDEX FROM t1;
 
182
#SHOW INDEX FROM t1;
171
183
CHECK TABLES t1;
172
184
 
173
185
# Test RENAME
201
213
 
202
214
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
215
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
 
216
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
205
217
show table status like 't1';
206
218
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
 
219
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
208
220
show table status like 't1';
209
221
drop table t1;
210
222
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;
211
223
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
 
224
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
213
225
show table status like 't1';
214
226
drop table t1;
215
227
 
522
534
#create table t1(f1 int);
523
535
#alter table t1 add column f2 datetime not null, add column f21 date not null;
524
536
#insert into t1 values(1,'2000-01-01','2000-01-01');
525
 
#--error 1292
 
537
#--error ER_TRUNCATED_WRONG_VALUE
526
538
#alter table t1 add column f3 datetime not null;
527
 
#--error 1292
 
539
#--error ER_TRUNCATED_WRONG_VALUE
528
540
#alter table t1 add column f3 date not null;
529
 
#--error 1292
 
541
#--error ER_TRUNCATED_WRONG_VALUE
530
542
#alter table t1 add column f4 datetime not null default '2002-02-02',
531
543
#  add column f41 date not null;
532
544
#alter table t1 add column f4 datetime not null default '2002-02-02',
685
697
--echo "Non-copy data change - new frm, but old data and index files"
686
698
ALTER TABLE t1 CHANGE int_field unsigned_int_field INTEGER NOT NULL, RENAME t2;
687
699
 
688
 
--error ER_NO_SUCH_TABLE
 
700
--error ER_TABLE_UNKNOWN
689
701
SELECT * FROM t1 ORDER BY int_field;
690
702
SELECT * FROM t2 ORDER BY unsigned_int_field;
691
703
DESCRIBE t2;