1
0
mirror of https://github.com/MariaDB/server.git synced 2025-06-03 07:02:23 +03:00
mariadb/mysql-test/suite/vcol/r/vcol_memory.result
2016-12-12 20:35:51 +01:00

8 lines
313 B
Plaintext

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;