summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/vcol/r/vcol_archive.result
blob: 5c11e8bb9e1891e037c03fe5dd7c6989cddeae45 (plain)
1
2
3
4
5
6
7
SET @@session.default_storage_engine = 'archive';
create table t1 (a int, b int as (a+1));
ERROR HY000: ARCHIVE storage engine does not support generated columns
create table t1 (a int not null);
alter table t1 add column b int as (a+1);
ERROR HY000: ARCHIVE storage engine does not support generated columns
drop table t1;