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