1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Merge devsrv-b.mysql.com:/space/magnus/bug17279/my50-bug17279

into  devsrv-b.mysql.com:/space/magnus/bug17279/my51-bug17279
This commit is contained in:
msvensson@devsrv-b.mysql.com
2006-02-28 10:44:48 +01:00
3 changed files with 60 additions and 1 deletions

View File

@ -263,7 +263,9 @@ my_bool acl_init(bool dont_read_acl_tables)
acl_cache= new hash_filo(ACL_CACHE_SIZE, 0, 0,
(hash_get_key) acl_entry_get_key,
(hash_free_key) free, system_charset_info);
(hash_free_key) free,
/* Use the case sensitive "binary" charset */
&my_charset_bin);
if (dont_read_acl_tables)
{
DBUG_RETURN(0); /* purecov: tested */