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