mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
MDEV-13414 Fix the SP code to avoid excessive use of strlen
This commit is contained in:
@@ -471,6 +471,7 @@ public:
|
||||
bool append(const char *s);
|
||||
bool append(const LEX_STRING *ls) { return append(ls->str, ls->length); }
|
||||
bool append(const LEX_CSTRING *ls) { return append(ls->str, ls->length); }
|
||||
bool append(const LEX_CSTRING &ls) { return append(ls.str, ls.length); }
|
||||
bool append(const char *s, uint32 arg_length);
|
||||
bool append(const char *s, uint32 arg_length, CHARSET_INFO *cs);
|
||||
bool append_ulonglong(ulonglong val);
|
||||
|
Reference in New Issue
Block a user