diff options
author | bar@bar.mysql.r18.ru <> | 2002-12-19 15:27:46 +0400 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2002-12-19 15:27:46 +0400 |
commit | e5103ce714dc3bbec6ea1dc77b7a02a8454c0165 (patch) | |
tree | c3e6bd23507975df60294ce53fadcc33d3a0b554 /sql/item_buff.cc | |
parent | c3053148f489b36378efa3bdf6676ca0334f69d1 (diff) | |
download | mariadb-git-e5103ce714dc3bbec6ea1dc77b7a02a8454c0165.tar.gz |
Less "default_charset_info"
Diffstat (limited to 'sql/item_buff.cc')
-rw-r--r-- | sql/item_buff.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_buff.cc b/sql/item_buff.cc index 7b8976bb572..573d4ab17e3 100644 --- a/sql/item_buff.cc +++ b/sql/item_buff.cc @@ -99,7 +99,7 @@ bool Item_field_buff::cmp(void) { bool tmp= field->cmp(buff) != 0; // This is not a blob! if (tmp) - field->get_image(buff,length); + field->get_image(buff,length,field->charset()); if (null_value != field->is_null()) { null_value= !null_value; |