mirror of
https://github.com/postgres/postgres.git
synced 2026-02-26 19:30:25 -05:00
Fix bogus hash table creation.
Andres Freund
This commit is contained in:
parent
21025d4a53
commit
5cb719beee
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue