mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Merge branch '10.3' into 10.4
This commit is contained in:
commit
7841a7eb09
339 changed files with 7429 additions and 2362 deletions
|
|
@ -4993,6 +4993,22 @@ DROP TABLE t1, t2, t3;
|
|||
--echo # End of 10.2 tests
|
||||
--echo #
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-26147: The test main.sp-row fails in case it is run in PS mode
|
||||
--echo #
|
||||
DELIMITER $$;
|
||||
CREATE PROCEDURE p1(a ROW(a INT,b INT))
|
||||
BEGIN
|
||||
SELECT a.a, a.b;
|
||||
END;
|
||||
$$
|
||||
DELIMITER ;$$
|
||||
PREPARE stmt FROM 'CALL p1(ROW(10, 20))';
|
||||
EXECUTE stmt;
|
||||
DEALLOCATE PREPARE stmt;
|
||||
|
||||
DROP PROCEDURE p1;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-19263: Server crashes in mysql_handle_single_derived
|
||||
--echo # upon 2nd execution of PS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue