Commit 5cb719be authored by Heikki Linnakangas's avatar Heikki Linnakangas

Fix bogus hash table creation.

Andres Freund
parent 21025d4a
...@@ -1008,7 +1008,7 @@ create_seq_hashtable(void) ...@@ -1008,7 +1008,7 @@ create_seq_hashtable(void)
ctl.hash = oid_hash; ctl.hash = oid_hash;
seqhashtab = hash_create("Sequence values", 16, &ctl, seqhashtab = hash_create("Sequence values", 16, &ctl,
HASH_ELEM | HASH_FUNCTION | HASH_CONTEXT); HASH_ELEM | HASH_FUNCTION);
} }
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment