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
6d5f7d1c
Commit
6d5f7d1c
authored
Jan 20, 2003
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changing some proc names to a more suitable one.
parent
69047e71
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
mysql-test/r/sp.result
mysql-test/r/sp.result
+3
-3
mysql-test/t/sp.test
mysql-test/t/sp.test
+3
-3
No files found.
mysql-test/r/sp.result
View file @
6d5f7d1c
...
...
@@ -124,7 +124,7 @@ insert into test.t1 values ("h1", x);
else
insert into test.t1 values ("h?", x);
end case;
create procedure
sinisa
()
create procedure
into_test
()
begin
declare x char(16);
declare y int;
...
...
@@ -245,7 +245,7 @@ id data
h0 0
h1 1
h? 17
call
sinisa
();
call
into_test
();
select * from t1;
id data
h0 0
...
...
@@ -274,5 +274,5 @@ drop procedure e;
drop procedure f;
drop procedure g;
drop procedure h;
drop procedure
sinisa
;
drop procedure
into_test
;
drop table t1;
mysql-test/t/sp.test
View file @
6d5f7d1c
...
...
@@ -187,7 +187,7 @@ else
insert
into
test
.
t1
values
(
"h?"
,
x
);
end
case
|
create
procedure
sinisa
()
create
procedure
into_test
()
begin
declare
x
char
(
16
);
declare
y
int
;
...
...
@@ -273,7 +273,7 @@ call h(0);
call
h
(
1
);
call
h
(
17
);
select
*
from
t1
;
call
sinisa
();
call
into_test
();
select
*
from
t1
;
delete
from
t1
;
...
...
@@ -298,6 +298,6 @@ drop procedure e;
drop
procedure
f
;
drop
procedure
g
;
drop
procedure
h
;
drop
procedure
sinisa
;
drop
procedure
into_test
;
drop
table
t1
;
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