summaryrefslogtreecommitdiff
path: root/mysql-test/main/alter_table_errors.test
blob: d9982ac26f4e6becab1ff8080b638e2b2e7f4b45 (plain)
1
2
3
4
5
6
7
8
9
10
--source include/have_innodb.inc

#
# MDEV-16110 ALTER with ALGORITHM=INPLACE breaks temporary table with virtual columns
#
create table t (a int, v int as (a)) engine=innodb;
--error ER_ALTER_OPERATION_NOT_SUPPORTED_REASON
alter table t change column a b tinyint, algorithm=inplace;
show create table t;
drop table t;