summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/r/vcol_archive.result
blob: 5ed2f3768ca740efd5ff7b0d38d4827d54b4a11f (plain)
1
2
3
4
5
6
7
SET @@session.storage_engine = 'archive';
create table t1 (a int, b int as (a+1));
ERROR HY000: ARCHIVE storage engine does not support computed 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 computed columns
drop table t1;