mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
Bug fix for alter table and auto_increment
This commit is contained in:
parent
2ba4836cf5
commit
0ba0f4a9aa
7 changed files with 30 additions and 17 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue