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 /client | |
parent | f8a5452877ada07efadc3e3180b619f780faec78 (diff) | |
download | mariadb-git-c60a29f0ee220277844264a20fbf8859203fabea.tar.gz |
Hash now supports several charsets
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index dd71c3255a0..473205e608f 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -2325,7 +2325,8 @@ static void var_from_env(const char* name, const char* def_val) static void init_var_hash() { VAR* v; - if (hash_init(&var_hash, 1024, 0, 0, get_var_key, var_free, MYF(0))) + if (hash_init(&var_hash, system_charset_info, + 1024, 0, 0, get_var_key, var_free, MYF(0))) die("Variable hash initialization failed"); var_from_env("MASTER_MYPORT", "9306"); var_from_env("SLAVE_MYPORT", "9307"); |