diff options
author | unknown <bar@gw.udmsearch.izhnet.ru> | 2002-03-14 21:44:42 +0400 |
---|---|---|
committer | unknown <bar@gw.udmsearch.izhnet.ru> | 2002-03-14 21:44:42 +0400 |
commit | 8959b690fe796a44ddda440290b3fe9a9cf89ca5 (patch) | |
tree | d80812bbab290e762f4a058cded480022c09d0f3 /client | |
parent | ee1ef8c58c9df9a62f7a0cc3dee6c2f705c8eb44 (diff) | |
download | mariadb-git-8959b690fe796a44ddda440290b3fe9a9cf89ca5.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"); |