diff options
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sql/item.h b/sql/item.h index c7c66102b43..fb6bed75d51 100644 --- a/sql/item.h +++ b/sql/item.h @@ -196,14 +196,14 @@ public: void set_null(); void set_int(longlong i); void set_double(double i); - void set_value(const char *str, uint length); - void set_long_str(const char *str, ulong length); - void set_long_binary(const char *str, ulong length); - void set_longdata(const char *str, ulong length); - void set_long_end(); + void set_value(const char *str, uint length, CHARSET_INFO *cs); + void set_long_str(const char *str, ulong length, CHARSET_INFO *cs); + void set_long_binary(const char *str, ulong length, CHARSET_INFO *cs); + void set_longdata(const char *str, ulong length, CHARSET_INFO *cs); + void set_long_end(); void reset() {} enum Item_result result_type () const - { return item_result_type; } + { return item_result_type; } Item *new_item() { return new Item_param(name); } }; |