summaryrefslogtreecommitdiff
path: root/sql/sql_type_fixedbin_storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_type_fixedbin_storage.h')
-rw-r--r--sql/sql_type_fixedbin_storage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_type_fixedbin_storage.h b/sql/sql_type_fixedbin_storage.h
index 6e18335bd4c..e3a46698463 100644
--- a/sql/sql_type_fixedbin_storage.h
+++ b/sql/sql_type_fixedbin_storage.h
@@ -122,9 +122,9 @@ public:
Hash the in-record representation
Used in Field::hash().
*/
- static void hash_record(const uchar *ptr, ulong *nr, ulong *nr2)
+ static void hash_record(uchar *ptr, Hasher *hasher)
{
- my_charset_bin.hash_sort(ptr, binary_length(), nr, nr2);
+ hasher->add(&my_charset_bin, ptr, binary_length());
}
static bool only_zero_bytes(const char *ptr, size_t length)