diff options
author | bar@gw.udmsearch.izhnet.ru <> | 2002-03-14 21:44:42 +0400 |
---|---|---|
committer | bar@gw.udmsearch.izhnet.ru <> | 2002-03-14 21:44:42 +0400 |
commit | c60a29f0ee220277844264a20fbf8859203fabea (patch) | |
tree | d80812bbab290e762f4a058cded480022c09d0f3 /sql/hash_filo.h | |
parent | f8a5452877ada07efadc3e3180b619f780faec78 (diff) | |
download | mariadb-git-c60a29f0ee220277844264a20fbf8859203fabea.tar.gz |
Hash now supports several charsets
Diffstat (limited to 'sql/hash_filo.h')
-rw-r--r-- | sql/hash_filo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/hash_filo.h b/sql/hash_filo.h index b8d45f0d3be..4d746d9b9bd 100644 --- a/sql/hash_filo.h +++ b/sql/hash_filo.h @@ -75,8 +75,8 @@ public: if (!locked) (void) pthread_mutex_lock(&lock); (void) hash_free(&cache); - (void) hash_init(&cache,size,key_offset, key_length, get_key, free_element, - 0); + (void) hash_init(&cache,system_charset_info,size,key_offset, + key_length, get_key, free_element,0); if (!locked) (void) pthread_mutex_unlock(&lock); first_link=last_link=0; |