summaryrefslogtreecommitdiff
path: root/sql/item.h
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2002-11-06 17:01:12 +0400
committerunknown <bar@bar.mysql.r18.ru>2002-11-06 17:01:12 +0400
commit6d7d19b860e0b3b9443b8059d36fb497029481d6 (patch)
tree51f69fc95a2c0f5cb568b1512cae6655412ab345 /sql/item.h
parent245f453383489a64c49178d6600df7785e211fe7 (diff)
downloadmariadb-git-6d7d19b860e0b3b9443b8059d36fb497029481d6.tar.gz
Some charset code clean-ups
Diffstat (limited to 'sql/item.h')
-rw-r--r--sql/item.h12
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); }
};