1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

bugfix: Item_func_get_system_var::print()

This commit is contained in:
Sergei Golubchik
2016-11-02 21:08:49 +01:00
parent 96bb5f44d8
commit 660355c1ac
4 changed files with 46 additions and 5 deletions

View File

@ -466,10 +466,8 @@ public:
}
bool append(const String &s);
bool append(const char *s);
bool append(const LEX_STRING *ls)
{
return append(ls->str, ls->length);
}
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 char *s, uint32 arg_length);
bool append(const char *s, uint32 arg_length, CHARSET_INFO *cs);
bool append_ulonglong(ulonglong val);