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/slave.cc | |
parent | f8a5452877ada07efadc3e3180b619f780faec78 (diff) | |
download | mariadb-git-c60a29f0ee220277844264a20fbf8859203fabea.tar.gz |
Hash now supports several charsets
Diffstat (limited to 'sql/slave.cc')
-rw-r--r-- | sql/slave.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/slave.cc b/sql/slave.cc index 9630cf6aa0e..52f04ef8675 100644 --- a/sql/slave.cc +++ b/sql/slave.cc @@ -470,7 +470,7 @@ int start_slave_threads(bool need_slave_mutex, bool wait_for_start, void init_table_rule_hash(HASH* h, bool* h_inited) { - hash_init(h, TABLE_RULE_HASH_SIZE,0,0, + hash_init(h, system_charset_info,TABLE_RULE_HASH_SIZE,0,0, (hash_get_key) get_table_key, (void (*)(void*)) free_table_ent, 0); *h_inited = 1; |