mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
A fix for handling endianess in Field_blob::unpack().
This commit is contained in:
@@ -7662,7 +7662,7 @@ const uchar *Field_blob::unpack(uchar *to,
|
||||
|
||||
const uchar *Field_blob::unpack(uchar *to, const uchar *from)
|
||||
{
|
||||
uint32 length=get_length(from);
|
||||
uint32 length=get_length(from,TRUE);
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
if (!table->s->db_low_byte_first)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user