Bug fix for alter table and auto_increment

This commit is contained in:
unknown 2004-07-31 12:00:12 +02:00
commit 0ba0f4a9aa
7 changed files with 30 additions and 17 deletions

View file

@ -29,7 +29,7 @@ col2 varchar(30) not null,
col3 varchar (20) not null,
col4 varchar(4) not null,
col5 enum('PENDING', 'ACTIVE', 'DISABLED') not null,
col6 int not null, to_be_deleted int);
col6 int not null, to_be_deleted int) ENGINE=ndbcluster;
insert into t1 values (2,4,3,5,"PENDING",1,7);
alter table t1
add column col4_5 varchar(20) not null after col4,