mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -323,4 +323,9 @@ create table t1(o1 int, o2 int, o3 int, primary key(o1,o2,o3)) engine = innodb;
|
||||
insert into t1 values(1,1,2),(2,2,1);
|
||||
alter table t1 drop primary key, add primary key(o1), lock=none;
|
||||
drop table t1;
|
||||
create table t1(o1 int, o2 int, primary key(o1,o2)) engine = innodb;
|
||||
insert into t1 values(1,1),(2,1);
|
||||
alter table t1 drop primary key, add column a int unique auto_increment,
|
||||
add primary key(o1,o2,a), algorithm=inplace;
|
||||
drop table t1;
|
||||
SET DEBUG_DBUG = @saved_debug_dbug;
|
||||
|
Reference in New Issue
Block a user