mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
73be27c07f
There was no error thrown when creating a table with a virtual table computed by an expression returning a row. This caused a crash when inserting into the table. Removed periods at the end of the error messages for virtual columns. Adjusted output in test result files accordingly.
7 lines
328 B
Text
7 lines
328 B
Text
SET @@session.storage_engine = 'memory';
|
|
create table t1 (a int, b int as (a+1));
|
|
ERROR HY000: 'Specified storage engine' is not yet supported for computed columns
|
|
create table t1 (a int);
|
|
alter table t1 add column b int as (a+1);
|
|
ERROR HY000: 'Specified storage engine' is not yet supported for computed columns
|
|
drop table t1;
|