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
b5583947
Commit
b5583947
authored
Sep 08, 2005
by
petr@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/usersnfs/pchardin/mysql-5.0
parents
8d0dd7a4
4a28ddac
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
84 additions
and
3 deletions
+84
-3
mysql-test/r/sp.result
mysql-test/r/sp.result
+19
-0
mysql-test/t/sp.test
mysql-test/t/sp.test
+26
-0
sql/item.cc
sql/item.cc
+18
-1
sql/item.h
sql/item.h
+8
-0
sql/sp_head.cc
sql/sp_head.cc
+13
-2
No files found.
mysql-test/r/sp.result
View file @
b5583947
...
...
@@ -3193,4 +3193,23 @@ set f1= concat( 'hello', f1 );
return f1;
end|
drop function bug9048|
drop procedure if exists bug12849_1|
create procedure bug12849_1(inout x char) select x into x|
set @var='a'|
call bug12849_1(@var)|
select @var|
@var
a
drop procedure bug12849_1|
drop procedure if exists bug12849_2|
create procedure bug12849_2(inout foo varchar(15))
begin
select concat(foo, foo) INTO foo;
end|
set @var='abcd'|
call bug12849_2(@var)|
select @var|
@var
abcdabcd
drop procedure bug12849_2|
drop table t1,t2;
mysql-test/t/sp.test
View file @
b5583947
...
...
@@ -4043,6 +4043,32 @@ begin
end
|
drop
function
bug9048
|
#
# Bug #12849 Stored Procedure: Crash on procedure call with CHAR type
# 'INOUT' parameter
#
--
disable_warnings
drop
procedure
if
exists
bug12849_1
|
--
enable_warnings
create
procedure
bug12849_1
(
inout
x
char
)
select
x
into
x
|
set
@
var
=
'a'
|
call
bug12849_1
(
@
var
)
|
select
@
var
|
drop
procedure
bug12849_1
|
--
disable_warnings
drop
procedure
if
exists
bug12849_2
|
--
enable_warnings
create
procedure
bug12849_2
(
inout
foo
varchar
(
15
))
begin
select
concat
(
foo
,
foo
)
INTO
foo
;
end
|
set
@
var
=
'abcd'
|
call
bug12849_2
(
@
var
)
|
select
@
var
|
drop
procedure
bug12849_2
|
#
# BUG#NNNN: New bug synopsis
#
...
...
sql/item.cc
View file @
b5583947
...
...
@@ -818,8 +818,25 @@ String *Item_splocal::val_str(String *sp)
DBUG_ASSERT
(
fixed
);
Item
*
it
=
this_item
();
String
*
ret
=
it
->
val_str
(
sp
);
/*
This way we mark returned value of val_str as const,
so that various functions (e.g. CONCAT) won't try to
modify the value of the Item. Analogous mechanism is
implemented for Item_param.
Without this trick Item_splocal could be changed as a
side-effect of expression computation. Here is an example
of what happens without it: suppose x is varchar local
variable in a SP with initial value 'ab' Then
select concat(x,'c');
would change x's value to 'abc', as Item_func_concat::val_str()
would use x's internal buffer to compute the result.
This is intended behaviour of Item_func_concat. Comments to
Item_param class contain some more details on the topic.
*/
str_value_ptr
.
set
(
ret
->
ptr
(),
ret
->
length
(),
ret
->
charset
());
null_value
=
it
->
null_value
;
return
ret
;
return
&
str_value_ptr
;
}
...
...
sql/item.h
View file @
b5583947
...
...
@@ -715,9 +715,17 @@ class Item {
class
Item_splocal
:
public
Item
{
uint
m_offset
;
public:
LEX_STRING
m_name
;
/*
Buffer, pointing to the string value of the item. We need it to
protect internal buffer from changes. See comment to analogous
member in Item_param for more details.
*/
String
str_value_ptr
;
/*
Position of this reference to SP variable in the statement (the
statement itself is in sp_instr_stmt::m_query).
...
...
sql/sp_head.cc
View file @
b5583947
...
...
@@ -275,8 +275,19 @@ sp_eval_func_item(THD *thd, Item **it_addr, enum enum_field_types type,
}
DBUG_PRINT
(
"info"
,(
"STRING_RESULT: %*s"
,
s
->
length
(),
s
->
c_ptr_quick
()));
CHARSET_INFO
*
itcs
=
it
->
collation
.
collation
;
CREATE_ON_CALLERS_ARENA
(
it
=
new
(
reuse
,
&
rsize
)
Item_string
(
itcs
),
/*
Reuse mechanism in sp_eval_func_item() is only employed for assignments
to local variables and OUT/INOUT SP parameters repsesented by
Item_splocal. Usually we have some expression, which needs
to be calculated and stored into the local variable. However in the
case if "it" equals to "reuse", there is no "calculation" step. So,
no reason to employ reuse mechanism to save variable into itself.
*/
if
(
it
==
reuse
)
DBUG_RETURN
(
it
);
CREATE_ON_CALLERS_ARENA
(
it
=
new
(
reuse
,
&
rsize
)
Item_string
(
it
->
collation
.
collation
),
use_callers_arena
,
&
backup_arena
);
/*
We have to use special constructor and allocate string
...
...
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