Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
f8d0d4d9
Commit
f8d0d4d9
authored
Mar 25, 2008
by
malff@lambda.hsd1.co.comcast.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Manual merge
parent
56f893cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
mysql-test/r/sp-code.result
mysql-test/r/sp-code.result
+5
-5
No files found.
mysql-test/r/sp-code.result
View file @
f8d0d4d9
...
...
@@ -847,8 +847,8 @@ 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 3
2
"SET @a=@a+1"
1 stmt 3
2
"SET @b=@b+1"
0 stmt 3
1
"SET @a=@a+1"
1 stmt 3
1
"SET @b=@b+1"
set @a=1;
set @b=1;
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;
show procedure code p_20906_b;
Pos Instruction
0 stmt 3
2
"SET @a=@a+1"
1 stmt 3
2
"SET @b=@b+1"
2 stmt 3
2
"SET @c=@c+1"
0 stmt 3
1
"SET @a=@a+1"
1 stmt 3
1
"SET @b=@b+1"
2 stmt 3
1
"SET @c=@c+1"
set @a=1;
set @b=1;
set @c=1;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment