mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.4 into 10.5
This commit is contained in:
@ -679,6 +679,7 @@ public:
|
||||
|
||||
int reserve(size_t space_needed)
|
||||
{
|
||||
DBUG_ASSERT((ulonglong) str_length + space_needed < UINT_MAX32);
|
||||
return realloc(str_length + space_needed);
|
||||
}
|
||||
int reserve(size_t space_needed, size_t grow_by);
|
||||
@ -964,6 +965,8 @@ public:
|
||||
{
|
||||
return !sortcmp(this, other, cs);
|
||||
}
|
||||
private:
|
||||
bool append_semi_hex(const char *s, uint len, CHARSET_INFO *cs);
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user