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