mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.6 into 10.7
This commit is contained in:
@ -800,3 +800,15 @@ drop procedure test_proc;
|
||||
drop view v1;
|
||||
drop function get_name;
|
||||
drop table t1;
|
||||
#
|
||||
# MDEV-28266: Crash in Field_string::type_handler when calling procedures
|
||||
#
|
||||
CREATE TABLE t (f INT);
|
||||
CREATE TRIGGER tr AFTER INSERT ON t FOR EACH ROW
|
||||
FOR x IN (SELECT * FROM json_table(NULL, '$' COLUMNS(a CHAR(1) path '$.*')) tmp)
|
||||
DO set @a=1; END FOR $
|
||||
INSERT INTO t () values ();
|
||||
DROP TABLE t;
|
||||
#
|
||||
# End of 10.6 tests
|
||||
#
|
||||
|
Reference in New Issue
Block a user