summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/r/vcol_blackhole.result
blob: dad1902643f1b9dc00ffb7a46cdf1cb9305eb565 (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' is not yet supported for computed columns
create table t1 (a int);
alter table t1 add column b int as (a+1);
ERROR HY000: 'BLACKHOLE' is not yet supported for computed columns
drop table t1;