diff options
Diffstat (limited to 'sql/sql_string.h')
-rw-r--r-- | sql/sql_string.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/sql_string.h b/sql/sql_string.h index 5cabcc02aae..37531429f8d 100644 --- a/sql/sql_string.h +++ b/sql/sql_string.h @@ -487,6 +487,10 @@ public: ls->length == strlen(ls->str))); return append(ls->str, (uint32) ls->length); } + bool append(const LEX_CSTRING &ls) + { + return append(&ls); + } bool append(const char *s, size_t size); bool append(const char *s, size_t arg_length, CHARSET_INFO *cs); bool append_ulonglong(ulonglong val); |