mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Post-merge fixes for backports.
mysql-test/r/sp-error.result: Update test case result. mysql-test/t/dirty_close.test: Dirty close does not work under embedded. mysql-test/t/sp-error.test: Use the specific error number so it won't catch other non-fatal errors.
This commit is contained in:
@ -1664,7 +1664,8 @@ set @old_recursion_depth = @@max_sp_recursion_depth;
|
||||
set @@max_sp_recursion_depth = 255;
|
||||
create procedure p1(a int)
|
||||
begin
|
||||
declare continue handler for sqlexception select 'exception';
|
||||
declare continue handler for 1436 -- ER_STACK_OVERRUN_NEED_MORE
|
||||
select 'exception';
|
||||
call p1(a+1);
|
||||
end|
|
||||
call p1(1);
|
||||
|
Reference in New Issue
Block a user