mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Further fixes for 2390: ucs2 alignment
This commit is contained in:
@ -183,6 +183,9 @@ public:
|
||||
bool copy(); // Alloc string if not alloced
|
||||
bool copy(const String &s); // Allocate new string
|
||||
bool copy(const char *s,uint32 arg_length, CHARSET_INFO *cs); // Allocate new string
|
||||
static bool needs_conversion(const char *s, uint32 arg_length,
|
||||
CHARSET_INFO *cs_from, CHARSET_INFO *cs_to);
|
||||
bool copy_aligned(const char *s, uint32 arg_length, CHARSET_INFO *cs);
|
||||
bool set_or_copy_aligned(const char *s, uint32 arg_length, CHARSET_INFO *cs);
|
||||
bool copy(const char*s,uint32 arg_length, CHARSET_INFO *csfrom,
|
||||
CHARSET_INFO *csto);
|
||||
|
Reference in New Issue
Block a user