mariadb/mysql-test/suite/vcol/r/vcol_csv.result
2011-04-25 17:22:25 +02:00

7 lines
302 B
Text

SET @@session.storage_engine = 'CSV';
create table t1 (a int, b int as (a+1));
ERROR HY000: CSV 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: CSV storage engine does not support computed columns
drop table t1;