mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge remote-tracking branch '11.3' into 11.4
This commit is contained in:
@ -231,6 +231,23 @@ alter table t1 force;
|
||||
show create table t1;
|
||||
drop table t1;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-32586 incorrect error about cyclic reference about JSON type virtual column
|
||||
--echo #
|
||||
|
||||
create table t1 (a int, b json as (a));
|
||||
drop table t1;
|
||||
|
||||
create table t1 (a int, b int as (a) check (b > 0));
|
||||
insert t1 (a) values (1);
|
||||
--error ER_CONSTRAINT_FAILED
|
||||
insert t1 (a) values (-1);
|
||||
drop table t1;
|
||||
|
||||
--echo #
|
||||
--echo # End of 10.4 tests
|
||||
--echo #
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-32439 INSERT IGNORE VALUES (one row) errors on constraint
|
||||
--echo #
|
||||
|
Reference in New Issue
Block a user