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
1f1a8531
Commit
1f1a8531
authored
Oct 16, 2003
by
pem@mysql.telia.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle user variables (@-vars) as OUT and INOUT parameters in SPs.
parent
c258c861
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
60 additions
and
21 deletions
+60
-21
mysql-test/r/sp.result
mysql-test/r/sp.result
+15
-1
mysql-test/t/sp.test
mysql-test/t/sp.test
+18
-2
sql/item_func.h
sql/item_func.h
+4
-1
sql/sp_head.cc
sql/sp_head.cc
+23
-17
No files found.
mysql-test/r/sp.result
View file @
1f1a8531
...
@@ -93,8 +93,12 @@ id data
...
@@ -93,8 +93,12 @@ id data
zip 100
zip 100
delete from t1;
delete from t1;
drop procedure zip;
drop procedure zip;
drop procedure zap;
drop procedure bar;
drop procedure bar;
call zap(7, @zap);
select @zap;
@zap
8
drop procedure zap;
create procedure c1(x int)
create procedure c1(x int)
call c2("c", x);
call c2("c", x);
create procedure c2(s char(16), x int)
create procedure c2(s char(16), x int)
...
@@ -132,7 +136,17 @@ io1 1
...
@@ -132,7 +136,17 @@ io1 1
delete from t1;
delete from t1;
drop procedure iotest;
drop procedure iotest;
drop procedure inc2;
drop procedure inc2;
create procedure incr(inout x int)
call inc(x);
select @zap;
@zap
8
call incr(@zap);
select @zap;
@zap
9
drop procedure inc;
drop procedure inc;
drop procedure incr;
create procedure cbv1()
create procedure cbv1()
begin
begin
declare y int default 3;
declare y int default 3;
...
...
mysql-test/t/sp.test
View file @
1f1a8531
...
@@ -122,9 +122,14 @@ call zip("zip", 99)|
...
@@ -122,9 +122,14 @@ call zip("zip", 99)|
select
*
from
t1
|
select
*
from
t1
|
delete
from
t1
|
delete
from
t1
|
drop
procedure
zip
|
drop
procedure
zip
|
drop
procedure
zap
|
drop
procedure
bar
|
drop
procedure
bar
|
# Top-level OUT parameter
call
zap
(
7
,
@
zap
)
|
select
@
zap
|
drop
procedure
zap
|
# "Deep" calls...
# "Deep" calls...
create
procedure
c1
(
x
int
)
create
procedure
c1
(
x
int
)
...
@@ -165,8 +170,19 @@ select * from t1|
...
@@ -165,8 +170,19 @@ select * from t1|
delete
from
t1
|
delete
from
t1
|
drop
procedure
iotest
|
drop
procedure
iotest
|
drop
procedure
inc2
|
drop
procedure
inc2
|
drop
procedure
inc
|
# Propagating top-level @-vars
create
procedure
incr
(
inout
x
int
)
call
inc
(
x
)
|
# Before
select
@
zap
|
call
incr
(
@
zap
)
|
# After
select
@
zap
|
drop
procedure
inc
|
drop
procedure
incr
|
# Call-by-value test
# Call-by-value test
# The expected result is:
# The expected result is:
...
...
sql/item_func.h
View file @
1f1a8531
...
@@ -46,7 +46,8 @@ class Item_func :public Item_result_field
...
@@ -46,7 +46,8 @@ class Item_func :public Item_result_field
SP_TOUCHES_FUNC
,
SP_CROSSES_FUNC
,
SP_WITHIN_FUNC
,
SP_TOUCHES_FUNC
,
SP_CROSSES_FUNC
,
SP_WITHIN_FUNC
,
SP_CONTAINS_FUNC
,
SP_OVERLAPS_FUNC
,
SP_CONTAINS_FUNC
,
SP_OVERLAPS_FUNC
,
SP_STARTPOINT
,
SP_ENDPOINT
,
SP_EXTERIORRING
,
SP_STARTPOINT
,
SP_ENDPOINT
,
SP_EXTERIORRING
,
SP_POINTN
,
SP_GEOMETRYN
,
SP_INTERIORRINGN
};
SP_POINTN
,
SP_GEOMETRYN
,
SP_INTERIORRINGN
,
GUSERVAR_FUNC
};
enum
optimize_type
{
OPTIMIZE_NONE
,
OPTIMIZE_KEY
,
OPTIMIZE_OP
,
OPTIMIZE_NULL
};
enum
optimize_type
{
OPTIMIZE_NONE
,
OPTIMIZE_KEY
,
OPTIMIZE_OP
,
OPTIMIZE_NULL
};
enum
Type
type
()
const
{
return
FUNC_ITEM
;
}
enum
Type
type
()
const
{
return
FUNC_ITEM
;
}
virtual
enum
Functype
functype
()
const
{
return
UNKNOWN_FUNC
;
}
virtual
enum
Functype
functype
()
const
{
return
UNKNOWN_FUNC
;
}
...
@@ -926,6 +927,8 @@ class Item_func_get_user_var :public Item_func
...
@@ -926,6 +927,8 @@ class Item_func_get_user_var :public Item_func
Item_func_get_user_var
(
LEX_STRING
a
)
:
Item_func_get_user_var
(
LEX_STRING
a
)
:
Item_func
(),
name
(
a
)
{}
Item_func
(),
name
(
a
)
{}
user_var_entry
*
get_entry
();
user_var_entry
*
get_entry
();
enum
Functype
functype
()
const
{
return
GUSERVAR_FUNC
;
}
LEX_STRING
get_name
()
{
return
name
;
}
double
val
();
double
val
();
longlong
val_int
();
longlong
val_int
();
String
*
val_str
(
String
*
str
);
String
*
val_str
(
String
*
str
);
...
...
sql/sp_head.cc
View file @
1f1a8531
...
@@ -389,7 +389,8 @@ sp_head::execute_procedure(THD *thd, List<Item> *args)
...
@@ -389,7 +389,8 @@ sp_head::execute_procedure(THD *thd, List<Item> *args)
else
else
nctx
->
push_item
(
sp_eval_func_item
(
thd
,
it
,
pvar
->
type
));
// IN or INOUT
nctx
->
push_item
(
sp_eval_func_item
(
thd
,
it
,
pvar
->
type
));
// IN or INOUT
// Note: If it's OUT or INOUT, it must be a variable.
// Note: If it's OUT or INOUT, it must be a variable.
// QQ: Need to handle "global" user/host variables too!!!
// QQ: We can check for global variables here, or should we do it
// while parsing?
if
(
pvar
->
mode
==
sp_param_in
)
if
(
pvar
->
mode
==
sp_param_in
)
nctx
->
set_oindex
(
i
,
-
1
);
// IN
nctx
->
set_oindex
(
i
,
-
1
);
// IN
else
// OUT or INOUT
else
// OUT or INOUT
...
@@ -427,22 +428,27 @@ sp_head::execute_procedure(THD *thd, List<Item> *args)
...
@@ -427,22 +428,27 @@ sp_head::execute_procedure(THD *thd, List<Item> *args)
if
(
!
tmp_octx
)
if
(
!
tmp_octx
)
octx
->
set_item
(
nctx
->
get_oindex
(
i
),
nctx
->
get_item
(
i
));
octx
->
set_item
(
nctx
->
get_oindex
(
i
),
nctx
->
get_item
(
i
));
else
else
{
// A global user variable
{
#if NOT_USED_NOW
// QQ Currently we just silently ignore non-user-variable arguments.
// QQ This works if the parameter really is a user variable, but
// We should check this during parsing, when setting up the call
// for the moment we can't assure that, so it will crash if it's
// above
// something else. So for now, we just do nothing, to avoid a crash.
if
(
it
->
type
()
==
Item
::
FUNC_ITEM
)
// Note: This also assumes we have a get_name() method in
{
// the Item_func_get_user_var class.
Item_func
*
fi
=
static_cast
<
Item_func
*>
(
it
);
Item
*
item
=
nctx
->
get_item
(
i
);
Item_func_set_user_var
*
suv
;
if
(
fi
->
functype
()
==
Item_func
::
GUSERVAR_FUNC
)
Item_func_get_user_var
*
guv
=
static_cast
<
Item_func_get_user_var
*>
(
it
);
{
// A global user variable
Item
*
item
=
nctx
->
get_item
(
i
);
suv
=
new
Item_func_set_user_var
(
guv
->
get_name
(),
item
);
Item_func_set_user_var
*
suv
;
suv
->
fix_fields
(
thd
,
NULL
,
&
item
);
Item_func_get_user_var
*
guv
=
suv
->
fix_length_and_dec
();
static_cast
<
Item_func_get_user_var
*>
(
fi
);
suv
->
update
();
#endif
suv
=
new
Item_func_set_user_var
(
guv
->
get_name
(),
item
);
suv
->
fix_fields
(
thd
,
NULL
,
&
item
);
suv
->
fix_length_and_dec
();
suv
->
update
();
}
}
}
}
}
}
}
}
...
...
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