Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit daaf1ec

Browse files
committed
Fixes to avoid merge conflicts
1 parent c34b1fe commit daaf1ec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

storage.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -888,11 +888,10 @@ init_deactivated_queries_storage(void)
888888
MemSet(&hash_ctl, 0, sizeof(hash_ctl));
889889
hash_ctl.keysize = sizeof(int);
890890
hash_ctl.entrysize = sizeof(int);
891-
hash_ctl.hash = uint32_hash;
892891
deactivated_queries = hash_create("aqo_deactivated_queries",
893892
128, /* start small and extend */
894893
&hash_ctl,
895-
HASH_ELEM | HASH_FUNCTION);
894+
HASH_ELEM | HASH_BLOBS);
896895
}
897896

898897
/* Destroys the storage for hash of deactivated queries */

0 commit comments

Comments
 (0)