diff options
author | monty@mashka.mysql.fi <> | 2003-08-05 16:08:36 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-08-05 16:08:36 +0300 |
commit | a5cf27b65b1549a570f98569614d1a6ff323b13f (patch) | |
tree | 3e2020be6d7b570a82be7b15ce60e5c353e2a087 /sql/sql_cache.cc | |
parent | 5c5b86ec282e531c153394d7bdac2daac9a81ed7 (diff) | |
parent | fbe49f0c4875506d74c8daeaf9d5b03fd5f6a115 (diff) | |
download | mariadb-git-a5cf27b65b1549a570f98569614d1a6ff323b13f.tar.gz |
Merge
Diffstat (limited to 'sql/sql_cache.cc')
-rw-r--r-- | sql/sql_cache.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_cache.cc b/sql/sql_cache.cc index ac6471e794c..767a1a46dcc 100644 --- a/sql/sql_cache.cc +++ b/sql/sql_cache.cc @@ -1422,10 +1422,10 @@ ulong Query_cache::init_cache() DUMP(this); - VOID(hash_init(&queries,system_charset_info,def_query_hash_size, 0, 0, + VOID(hash_init(&queries, &my_charset_bin, def_query_hash_size, 0, 0, query_cache_query_get_key, 0, 0)); #ifndef FN_NO_CASE_SENCE - VOID(hash_init(&tables,system_charset_info,def_table_hash_size, 0, 0, + VOID(hash_init(&tables, &my_charset_bin, def_table_hash_size, 0, 0, query_cache_table_get_key, 0, 0)); #else // windows, OS/2 or other case insensitive file names work around |