mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
7 lines
320 B
Text
7 lines
320 B
Text
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;
|