~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/alter_table.test

Replace MAX_(DATE|TIME).*_WIDTH defines in definitions.h with real (and correct) static const members to Temporal types.

This fixes the buffer overflow in https://bugs.launchpad.net/drizzle/+bug/373468

It also removes a handwritten snprintf in field/datetime.cc
However... this caused us to have to change Temporal to have a way to not
"convert" the int64_t value (so 20090101 becomes 20090101000000 etc) as it
has already been converted and we just want the Temporal type to do the
to_string conversion.

This still causes a failure in 'metadata' test due to size of timestamp type. I need feedback from Jay on when the usecond code comes into play to know the correct fix for this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
NAME varchar(80) DEFAULT '' NOT NULL,
40
40
PRIMARY KEY (GROUP_ID,LANG_ID),
41
41
KEY NAME (NAME));
42
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
 
42
#show table status like "t1";
43
43
ALTER TABLE t1 CHANGE NAME NAME CHAR(80) not null;
44
44
--replace_column 8 #
45
 
show COLUMNS FROM t1;
 
45
SHOW FULL COLUMNS FROM t1;
46
46
DROP TABLE t1;
47
47
 
48
48
#
55
55
select * from t1;
56
56
drop table t1;
57
57
 
58
 
CREATE TEMPORARY TABLE t1 (
 
58
CREATE TABLE t1 (
59
59
  id int NOT NULL default '0',
60
60
  category_id int NOT NULL default '0',
61
61
  type_id int NOT NULL default '0',
155
155
# Test with two keys
156
156
#
157
157
 
158
 
CREATE TEMPORARY TABLE t1 (
159
 
  Host varchar(16) NOT NULL default '',
160
 
  User varchar(16) NOT NULL default '',
 
158
CREATE TABLE t1 (
 
159
  Host varchar(16) binary NOT NULL default '',
 
160
  User varchar(16) binary NOT NULL default '',
161
161
  PRIMARY KEY  (Host,User),
162
162
  KEY  (Host)
163
163
) ENGINE=MyISAM;
164
164
 
165
165
ALTER TABLE t1 DISABLE KEYS;
166
 
#SHOW INDEX FROM t1;
 
166
SHOW INDEX FROM t1;
167
167
INSERT INTO t1 VALUES ('localhost','root'),('localhost','');
168
 
#SHOW INDEX FROM t1;
 
168
SHOW INDEX FROM t1;
169
169
ALTER TABLE t1 ENABLE KEYS;
170
 
#SHOW INDEX FROM t1;
 
170
SHOW INDEX FROM t1;
171
171
CHECK TABLES t1;
172
172
 
173
173
# Test RENAME
189
189
# BUG#6236 - ALTER TABLE MODIFY should set implicit NOT NULL on PK columns
190
190
#
191
191
drop table if exists t1;
192
 
create TEMPORARY table t1 ( a varchar(10) not null primary key ) engine=myisam;
 
192
create table t1 ( a varchar(10) not null primary key ) engine=myisam;
193
193
flush tables;
194
194
alter table t1 modify a varchar(10);
195
195
flush tables;
199
199
# The following is also part of bug #6236 (CREATE TABLE didn't properly count
200
200
# not null columns for primary keys)
201
201
 
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;
 
202
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;
203
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 1 #  6 # 7 # 8 # 9 # 10 #
 
204
--replace_column 3 X 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
205
205
show table status like 't1';
206
206
alter table t1 modify a int;
207
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
 
207
--replace_column 3 X 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
208
208
show table status like 't1';
209
209
drop table 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;
 
210
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
211
insert into t1 (a) values(1);
212
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
 
212
--replace_column 3 X 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X
213
213
show table status like 't1';
214
214
drop table t1;
215
215
 
237
237
# BUG 12207 alter table ... discard table space on MyISAM table causes ERROR 2013 (HY000)
238
238
#
239
239
# Some platforms (Mac OS X, Windows) will send the error message using small letters.
240
 
CREATE TEMPORARY TABLE T12207(a int) ENGINE=MYISAM;
 
240
CREATE TABLE T12207(a int) ENGINE=MYISAM;
241
241
--replace_result t12207 T12207
242
242
--error ER_ILLEGAL_HA
243
243
ALTER TABLE T12207 DISCARD TABLESPACE;
383
383
drop table t1;
384
384
 
385
385
#
386
 
# BUG#23404 - ROW_FORMAT=COMPACT option is lost is an index is added to the
 
386
# BUG#23404 - ROW_FORMAT=FIXED option is lost is an index is added to the
387
387
# table
388
388
#
389
 
CREATE TABLE t1(a INT) ROW_FORMAT=COMPACT;
 
389
CREATE TABLE t1(a INT) ROW_FORMAT=FIXED;
390
390
CREATE INDEX i1 ON t1(a);
391
391
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
392
392
SHOW CREATE TABLE t1;
491
491
# Bug#25262 Auto Increment lost when changing Engine type
492
492
#
493
493
 
494
 
create TEMPORARY table t1(id int primary key auto_increment) engine=MEMORY;
 
494
create table t1(id int primary key auto_increment) engine=heap;
495
495
 
496
496
insert into t1 values (null);
497
497
insert into t1 values (null);
508
508
insert into t1 values (null);
509
509
select * from t1;
510
510
 
511
 
# Alter to MEMORY again
512
 
alter table t1 engine = MEMORY;
 
511
# Alter to heap again
 
512
alter table t1 engine = heap;
513
513
insert into t1 values (null);
514
514
select * from t1;
515
515
 
566
566
# without # prefix is not allowed for TEXT columns, while index
567
567
# is defined with prefix.
568
568
569
 
create TEMPORARY table t1 (t varchar(255) default null, key t (t(80))) engine=myisam;
 
569
create table t1 (t varchar(255) default null, key t (t(80))) engine=myisam;
570
570
alter table t1 change t t text;
571
571
drop table t1;
572
572
 
574
574
# Bug#18038  MySQL server corrupts binary columns data
575
575
#
576
576
 
577
 
CREATE TABLE t1 (s CHAR(8));
 
577
CREATE TABLE t1 (s CHAR(8) BINARY);
578
578
INSERT INTO t1 VALUES ('test');
579
579
SELECT LENGTH(s) FROM t1;
580
 
ALTER TABLE t1 MODIFY s CHAR(10);
 
580
ALTER TABLE t1 MODIFY s CHAR(10) BINARY;
581
581
SELECT LENGTH(s) FROM t1;
582
582
DROP TABLE t1;
583
583