1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Hash now supports several charsets

This commit is contained in:
unknown
2002-03-14 21:44:42 +04:00
parent ee1ef8c58c
commit 8959b690fe
18 changed files with 54 additions and 38 deletions

View File

@ -269,7 +269,8 @@ static void free_user(struct user_conn *uc)
void init_max_user_conn(void)
{
(void) hash_init(&hash_user_connections,max_connections,0,0,
(void) hash_init(&hash_user_connections,system_charset_info,max_connections,
0,0,
(hash_get_key) get_key_conn, (void (*)(void*)) free_user,
0);
}