mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge remote-tracking branch 'origin/10.2' into bb-10.2-ext
Conflicts: sql/table.cc
This commit is contained in:
@ -612,7 +612,8 @@ uchar *engine_option_value::frm_image(uchar *buff)
|
||||
{
|
||||
if (value.str)
|
||||
{
|
||||
*buff++= name.length;
|
||||
DBUG_ASSERT(name.length <= 0xff);
|
||||
*buff++= (uchar)name.length;
|
||||
memcpy(buff, name.str, name.length);
|
||||
buff+= name.length;
|
||||
int2store(buff, value.length | (quoted_value ? FRM_QUOTED_VALUE : 0));
|
||||
|
Reference in New Issue
Block a user