diff options
author | unknown <malff@lambda.hsd1.co.comcast.net.> | 2008-03-25 17:35:34 -0600 |
---|---|---|
committer | unknown <malff@lambda.hsd1.co.comcast.net.> | 2008-03-25 17:35:34 -0600 |
commit | ce047d4b8d20af49e1a3fa545bc8ae22ae35f4ed (patch) | |
tree | cb357a10310ca593a5159d8bdbe51a7a96aac5d8 /mysql-test/r/sp-code.result | |
parent | f1bb7c2019db0ea039ac155ac8723690cdfc69a2 (diff) | |
parent | 18801aa8298bfe20a397ec36dd3d72fda694fece (diff) | |
download | mariadb-git-ce047d4b8d20af49e1a3fa545bc8ae22ae35f4ed.tar.gz |
Merge lambda.hsd1.co.comcast.net.:/home/malff/TREE/mysql-5.0-opt
into lambda.hsd1.co.comcast.net.:/home/malff/TREE/mysql-5.1-opt-merge
mysql-test/r/sp-code.result:
Auto merged
mysql-test/t/sp-code.test:
Auto merged
Diffstat (limited to 'mysql-test/r/sp-code.result')
-rw-r--r-- | mysql-test/r/sp-code.result | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/mysql-test/r/sp-code.result b/mysql-test/r/sp-code.result index f9c6914468c..7706f18b171 100644 --- a/mysql-test/r/sp-code.result +++ b/mysql-test/r/sp-code.result @@ -842,6 +842,34 @@ Pos Instruction 21 jump 3 drop procedure proc_33618_h; drop procedure proc_33618_c; +drop procedure if exists p_20906_a; +drop procedure if exists p_20906_b; +create procedure p_20906_a() SET @a=@a+1, @b=@b+1; +show procedure code p_20906_a; +Pos Instruction +0 stmt 32 "SET @a=@a+1" +1 stmt 32 "SET @b=@b+1" +set @a=1; +set @b=1; +call p_20906_a(); +select @a, @b; +@a @b +2 2 +create procedure p_20906_b() SET @a=@a+1, @b=@b+1, @c=@c+1; +show procedure code p_20906_b; +Pos Instruction +0 stmt 32 "SET @a=@a+1" +1 stmt 32 "SET @b=@b+1" +2 stmt 32 "SET @c=@c+1" +set @a=1; +set @b=1; +set @c=1; +call p_20906_b(); +select @a, @b, @c; +@a @b @c +2 2 2 +drop procedure p_20906_a; +drop procedure p_20906_b; End of 5.0 tests. CREATE PROCEDURE p1() BEGIN |