mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
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.
8 lines
328 B
Plaintext
8 lines
328 B
Plaintext
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;
|