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
8a422a14
Commit
8a422a14
authored
Jul 15, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/dlenev/src/mysql-5.0-bg9565
parents
ba7d8ad7
32e157ec
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
0 deletions
+39
-0
mysql-test/r/sp.result
mysql-test/r/sp.result
+17
-0
mysql-test/t/sp.test
mysql-test/t/sp.test
+22
-0
No files found.
mysql-test/r/sp.result
View file @
8a422a14
...
@@ -3062,4 +3062,21 @@ l
...
@@ -3062,4 +3062,21 @@ l
drop procedure bug6063|
drop procedure bug6063|
drop procedure bug7088_1|
drop procedure bug7088_1|
drop procedure bug7088_2|
drop procedure bug7088_2|
drop procedure if exists bug9565_sub|
drop procedure if exists bug9565|
create procedure bug9565_sub()
begin
select * from t1;
end|
create procedure bug9565()
begin
insert into t1 values ("one", 1);
call bug9565_sub();
end|
call bug9565()|
id data
one 1
delete from t1|
drop procedure bug9565_sub|
drop procedure bug9565|
drop table t1,t2;
drop table t1,t2;
mysql-test/t/sp.test
View file @
8a422a14
...
@@ -3832,6 +3832,28 @@ drop procedure bug6063|
...
@@ -3832,6 +3832,28 @@ drop procedure bug6063|
drop
procedure
bug7088_1
|
drop
procedure
bug7088_1
|
drop
procedure
bug7088_2
|
drop
procedure
bug7088_2
|
#
# BUG#9565: "Wrong locking in stored procedure if a sub-sequent procedure
# is called".
#
--
disable_warnings
drop
procedure
if
exists
bug9565_sub
|
drop
procedure
if
exists
bug9565
|
--
enable_warnings
create
procedure
bug9565_sub
()
begin
select
*
from
t1
;
end
|
create
procedure
bug9565
()
begin
insert
into
t1
values
(
"one"
,
1
);
call
bug9565_sub
();
end
|
call
bug9565
()
|
delete
from
t1
|
drop
procedure
bug9565_sub
|
drop
procedure
bug9565
|
#
#
# BUG#NNNN: New bug synopsis
# BUG#NNNN: New bug synopsis
...
...
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