155
155
# Test with two keys
158
CREATE TEMPORARY TABLE t1 (
159
Host varchar(16) NOT NULL default '',
160
User varchar(16) NOT NULL default '',
159
Host varchar(16) binary NOT NULL default '',
160
User varchar(16) binary NOT NULL default '',
161
161
PRIMARY KEY (Host,User),
165
165
ALTER TABLE t1 DISABLE KEYS;
167
167
INSERT INTO t1 VALUES ('localhost','root'),('localhost','');
169
169
ALTER TABLE t1 ENABLE KEYS;
199
199
# The following is also part of bug #6236 (CREATE TABLE didn't properly count
200
200
# 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;
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';
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';