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
c7f32b02
Commit
c7f32b02
authored
Sep 30, 2008
by
Patrick Crews
Browse files
Options
Browse Files
Download
Plain Diff
Automerge
parents
51c40c5b
b6f4b1c0
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
68 additions
and
3 deletions
+68
-3
mysql-test/r/sp-error.result
mysql-test/r/sp-error.result
+7
-0
mysql-test/r/sp.result
mysql-test/r/sp.result
+10
-0
mysql-test/t/sp-error.test
mysql-test/t/sp-error.test
+8
-0
mysql-test/t/sp.test
mysql-test/t/sp.test
+18
-0
sql/field.cc
sql/field.cc
+11
-1
sql/field.h
sql/field.h
+9
-1
sql/sp_head.cc
sql/sp_head.cc
+5
-1
No files found.
mysql-test/r/sp-error.result
View file @
c7f32b02
...
...
@@ -1513,3 +1513,10 @@ end loop label1;
end loop;
end|
ERROR 42000: End-label label1 without match
CREATE TABLE t1 (a INT)|
INSERT INTO t1 VALUES (1),(2)|
CREATE PROCEDURE p1(a INT) BEGIN END|
CALL p1((SELECT * FROM t1))|
ERROR 21000: Subquery returns more than 1 row
DROP PROCEDURE IF EXISTS p1|
DROP TABLE t1|
mysql-test/r/sp.result
View file @
c7f32b02
...
...
@@ -6662,6 +6662,16 @@ drop procedure p1;
drop function f1;
drop view v1;
drop table t1;
drop procedure if exists `p2` $
create procedure `p2`(in `a` text charset utf8)
begin
declare `pos` int default 1;
declare `str` text charset utf8;
set `str` := `a`;
select substr(`str`, `pos`+ 1 ) into `str`;
end $
call `p2`('s s s s s s');
drop procedure `p2`;
# ------------------------------------------------------------------
# -- End of 5.0 tests
# ------------------------------------------------------------------
mysql-test/t/sp-error.test
View file @
c7f32b02
...
...
@@ -2173,6 +2173,14 @@ begin
end
loop
;
end
|
CREATE
TABLE
t1
(
a
INT
)
|
INSERT
INTO
t1
VALUES
(
1
),(
2
)
|
CREATE
PROCEDURE
p1
(
a
INT
)
BEGIN
END
|
--
error
ER_SUBQUERY_NO_1_ROW
CALL
p1
((
SELECT
*
FROM
t1
))
|
DROP
PROCEDURE
IF
EXISTS
p1
|
DROP
TABLE
t1
|
delimiter
;
|
#
...
...
mysql-test/t/sp.test
View file @
c7f32b02
...
...
@@ -7818,6 +7818,24 @@ drop function f1;
drop view v1;
drop table t1;
#
# Bug#38469 invalid memory read and/or crash with utf8 text field, stored procedure, uservar
#
delimiter $;
--disable_warnings
drop procedure if exists `
p2
` $
--enable_warnings
create procedure `
p2
`(in `
a
` text charset utf8)
begin
declare `
pos
` int default 1;
declare `
str
` text charset utf8;
set `
str
` := `
a
`;
select substr(`
str
`, `
pos
`+ 1 ) into `
str
`;
end $
delimiter ;$
call `
p2
`('s s s s s s');
drop procedure `
p2
`
;
--
echo
# ------------------------------------------------------------------
--
echo
# -- End of 5.0 tests
--
echo
# ------------------------------------------------------------------
sql/field.cc
View file @
c7f32b02
...
...
@@ -6992,8 +6992,18 @@ int Field_blob::store(const char *from,uint length,CHARSET_INFO *cs)
return
0
;
}
if
(
from
==
value
.
ptr
())
/*
If the 'from' address is in the range of the temporary 'value'-
object we need to copy the content to a different location or it will be
invalidated when the 'value'-object is reallocated to make room for
the new character set.
*/
if
(
from
>=
value
.
ptr
()
&&
from
<=
value
.
ptr
()
+
value
.
length
())
{
/*
If content of the 'from'-address is cached in the 'value'-object
it is possible that the content needs a character conversion.
*/
uint32
dummy_offset
;
if
(
!
String
::
needs_conversion
(
length
,
cs
,
field_charset
,
&
dummy_offset
))
{
...
...
sql/field.h
View file @
c7f32b02
...
...
@@ -1213,8 +1213,16 @@ public:
class
Field_blob
:
public
Field_longstr
{
protected:
/**
The number of bytes used to represent the length of the blob.
*/
uint
packlength
;
String
value
;
// For temporaries
/**
The 'value'-object is a cache fronting the storage engine.
*/
String
value
;
public:
Field_blob
(
char
*
ptr_arg
,
uchar
*
null_ptr_arg
,
uchar
null_bit_arg
,
enum
utype
unireg_check_arg
,
const
char
*
field_name_arg
,
...
...
sql/sp_head.cc
View file @
c7f32b02
...
...
@@ -1762,7 +1762,11 @@ sp_head::execute_procedure(THD *thd, List<Item> *args)
we'll leave it here.
*/
if
(
!
thd
->
in_sub_stmt
)
close_thread_tables
(
thd
,
0
,
0
);
{
thd
->
lex
->
unit
.
cleanup
();
close_thread_tables
(
thd
);
thd
->
rollback_item_tree_changes
();
}
DBUG_PRINT
(
"info"
,(
" %.*s: eval args done"
,
m_name
.
length
,
m_name
.
str
));
}
...
...
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