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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
de135f50
Commit
de135f50
authored
Jan 20, 2003
by
Sinisa@sinisa.nasamreza.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changing some proc names to a more suitable one.
parent
e6b8fa57
Changes
2
Hide 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 @
de135f50
...
...
@@ -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 @
de135f50
...
...
@@ -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