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.
8 lines
362 B
Text
8 lines
362 B
Text
drop table if exists t1, t2, t3;
|
|
create table t1 (a int, b int as (a % 10));
|
|
create table t2 (a int, b int as (a % 10));
|
|
insert into t1 values (1,default);
|
|
insert into t2 values (2,default);
|
|
create table t3 (a int, b int as (a % 10)) engine=MERGE UNION=(t1,t2);
|
|
ERROR HY000: 'Specified storage engine' is not yet supported for computed columns
|
|
drop table t1,t2;
|