mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge branch '10.2' into 10.3
This commit is contained in:
@ -8,3 +8,14 @@ create table t (a int, v int as (a)) engine=innodb;
|
||||
alter table t change column a b tinyint, algorithm=inplace;
|
||||
show create table t;
|
||||
drop table t;
|
||||
|
||||
create temporary table t1 (a int, v int as (a));
|
||||
--error ER_ALTER_OPERATION_NOT_SUPPORTED
|
||||
alter table t1 change column a b int, algorithm=inplace;
|
||||
show create table t1;
|
||||
|
||||
create temporary table t2 (a int, v int as (a));
|
||||
lock table t2 write;
|
||||
--error ER_ALTER_OPERATION_NOT_SUPPORTED
|
||||
alter table t2 change column a b int, algorithm=inplace;
|
||||
show create table t2;
|
||||
|
Reference in New Issue
Block a user