mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Manual merge
This commit is contained in:
@ -847,8 +847,8 @@ drop procedure if exists p_20906_b;
|
|||||||
create procedure p_20906_a() SET @a=@a+1, @b=@b+1;
|
create procedure p_20906_a() SET @a=@a+1, @b=@b+1;
|
||||||
show procedure code p_20906_a;
|
show procedure code p_20906_a;
|
||||||
Pos Instruction
|
Pos Instruction
|
||||||
0 stmt 32 "SET @a=@a+1"
|
0 stmt 31 "SET @a=@a+1"
|
||||||
1 stmt 32 "SET @b=@b+1"
|
1 stmt 31 "SET @b=@b+1"
|
||||||
set @a=1;
|
set @a=1;
|
||||||
set @b=1;
|
set @b=1;
|
||||||
call p_20906_a();
|
call p_20906_a();
|
||||||
@ -858,9 +858,9 @@ select @a, @b;
|
|||||||
create procedure p_20906_b() SET @a=@a+1, @b=@b+1, @c=@c+1;
|
create procedure p_20906_b() SET @a=@a+1, @b=@b+1, @c=@c+1;
|
||||||
show procedure code p_20906_b;
|
show procedure code p_20906_b;
|
||||||
Pos Instruction
|
Pos Instruction
|
||||||
0 stmt 32 "SET @a=@a+1"
|
0 stmt 31 "SET @a=@a+1"
|
||||||
1 stmt 32 "SET @b=@b+1"
|
1 stmt 31 "SET @b=@b+1"
|
||||||
2 stmt 32 "SET @c=@c+1"
|
2 stmt 31 "SET @c=@c+1"
|
||||||
set @a=1;
|
set @a=1;
|
||||||
set @b=1;
|
set @b=1;
|
||||||
set @c=1;
|
set @c=1;
|
||||||
|
Reference in New Issue
Block a user