Commit 668d79e8 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fixed compiler warning in central header file mysql_priv.h.

parent 80e14ddb
...@@ -872,7 +872,7 @@ public: ...@@ -872,7 +872,7 @@ public:
Lazy_string_str(const char *str_arg, size_t len_arg) Lazy_string_str(const char *str_arg, size_t len_arg)
: Lazy_string(), str(str_arg), len(len_arg) {} : Lazy_string(), str(str_arg), len(len_arg) {}
void copy_to(String *dst) const void copy_to(String *dst) const
{ dst->copy(str, len, system_charset_info); } { dst->copy(str, (uint32)len, system_charset_info); }
}; };
class Lazy_string_num : public Lazy_string class Lazy_string_num : public Lazy_string
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment