summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/r/vcol_csv.result
blob: 9a0a76576f670f8848bc47e890e6f2e3e296eb3f (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 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: CSV storage engine does not support generated columns
drop table t1;