mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge 5.0-bugteam -> 5.1-bugteam
This commit is contained in:
@ -6836,6 +6836,16 @@ drop procedure p1;
|
|||||||
drop function f1;
|
drop function f1;
|
||||||
drop view v1;
|
drop view v1;
|
||||||
drop table t1;
|
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
|
# -- End of 5.0 tests
|
||||||
# ------------------------------------------------------------------
|
# ------------------------------------------------------------------
|
||||||
|
@ -8023,6 +8023,24 @@ drop function f1;
|
|||||||
drop view v1;
|
drop view v1;
|
||||||
drop table t1;
|
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 # ------------------------------------------------------------------
|
||||||
--echo # -- End of 5.0 tests
|
--echo # -- End of 5.0 tests
|
||||||
--echo # ------------------------------------------------------------------
|
--echo # ------------------------------------------------------------------
|
||||||
|
12
sql/field.cc
12
sql/field.cc
@ -7699,8 +7699,18 @@ int Field_blob::store(const char *from,uint length,CHARSET_INFO *cs)
|
|||||||
return 0;
|
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;
|
uint32 dummy_offset;
|
||||||
if (!String::needs_conversion(length, cs, field_charset, &dummy_offset))
|
if (!String::needs_conversion(length, cs, field_charset, &dummy_offset))
|
||||||
{
|
{
|
||||||
|
10
sql/field.h
10
sql/field.h
@ -1597,8 +1597,16 @@ private:
|
|||||||
|
|
||||||
class Field_blob :public Field_longstr {
|
class Field_blob :public Field_longstr {
|
||||||
protected:
|
protected:
|
||||||
|
/**
|
||||||
|
The number of bytes used to represent the length of the blob.
|
||||||
|
*/
|
||||||
uint packlength;
|
uint packlength;
|
||||||
String value; // For temporaries
|
|
||||||
|
/**
|
||||||
|
The 'value'-object is a cache fronting the storage engine.
|
||||||
|
*/
|
||||||
|
String value;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Field_blob(uchar *ptr_arg, uchar *null_ptr_arg, uchar null_bit_arg,
|
Field_blob(uchar *ptr_arg, uchar *null_ptr_arg, uchar null_bit_arg,
|
||||||
enum utype unireg_check_arg, const char *field_name_arg,
|
enum utype unireg_check_arg, const char *field_name_arg,
|
||||||
|
Reference in New Issue
Block a user