summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/r/vcol_csv.result
blob: 2da4e330f9f6463d1c50558e0c57e065edb11593 (plain)
1
2
3
4
5
6
7
SET @@session.storage_engine = 'CSV';
create table t1 (a int, b int as (a+1));
ERROR HY000: 'CSV' is not yet supported for computed columns
create table t1 (a int not null);
alter table t1 add column b int as (a+1);
ERROR HY000: 'CSV' is not yet supported for computed columns
drop table t1;