Fix bogus hash table creation.

Andres Freund
This commit is contained in:
Heikki Linnakangas 2013-11-15 14:23:40 +02:00
parent 21025d4a53
commit 5cb719beee

View File

@ -1008,7 +1008,7 @@ create_seq_hashtable(void)
ctl.hash = oid_hash;
seqhashtab = hash_create("Sequence values", 16, &ctl,
HASH_ELEM | HASH_FUNCTION | HASH_CONTEXT);
HASH_ELEM | HASH_FUNCTION);
}
/*