diff options
Diffstat (limited to 'sql/protocol.cc')
-rw-r--r-- | sql/protocol.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sql/protocol.cc b/sql/protocol.cc index bc94eb238fd..5aa3b7b5055 100644 --- a/sql/protocol.cc +++ b/sql/protocol.cc @@ -818,7 +818,7 @@ bool Protocol_text::store(const char *from, uint length, bool Protocol_text::store(const char *from, uint length, - CHARSET_INFO *fromcs) + CHARSET_INFO *fromcs) { CHARSET_INFO *tocs= this->thd->variables.character_set_results; #ifndef DBUG_OFF @@ -1062,7 +1062,8 @@ void Protocol_binary::prepare_for_resend() } -bool Protocol_binary::store(const char *from, uint length, CHARSET_INFO *fromcs) +bool Protocol_binary::store(const char *from, uint length, + CHARSET_INFO *fromcs) { CHARSET_INFO *tocs= thd->variables.character_set_results; field_pos++; @@ -1070,7 +1071,7 @@ bool Protocol_binary::store(const char *from, uint length, CHARSET_INFO *fromcs) } bool Protocol_binary::store(const char *from,uint length, - CHARSET_INFO *fromcs, CHARSET_INFO *tocs) + CHARSET_INFO *fromcs, CHARSET_INFO *tocs) { field_pos++; return store_string_aux(from, length, fromcs, tocs); |