Details
Description
CREATE TABLE t (f INT);
|
|
--delimiter $
|
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 $
|
--delimiter ;
|
|
INSERT INTO t () values ();
|
|
# Cleanup
|
DROP TABLE t;
|
Fix for 10.6, but I think it will be better to push it in 10.6 with the test and in 10.3 without test (syntax is incompatible).
commit e3e59c9e38d5405942b6449a2cdc044e67c27790 (HEAD -> bb-10.6-MDEV-28266, origin/bb-10.6-MDEV-28266)
Author: Oleksandr Byelkin <sanja@mariadb.com>
Date: Fri Apr 8 10:37:17 2022 +0200
MDEV-28266 Crash in Field_string::type_handler when calling procedures
In case of only metadata request the cursor lack the call to redirect
Field::orig_table to the temporary table.