mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-03-16 17:16:57 +08:00
Fix mistake in extensible node code.
I believe that I (rhaas) introduced this bug while editing the patch that became bcac23de73b89b001fbc628d84471a392e928d1c. Report and patch from KaiGai Kohei.
This commit is contained in:
@ -45,7 +45,7 @@ RegisterExtensibleNodeMethods(const ExtensibleNodeMethods *methods)
|
||||
HASHCTL ctl;
|
||||
|
||||
memset(&ctl, 0, sizeof(HASHCTL));
|
||||
ctl.keysize = NAMEDATALEN;
|
||||
ctl.keysize = EXTNODENAME_MAX_LEN;
|
||||
ctl.entrysize = sizeof(ExtensibleNodeEntry);
|
||||
extensible_node_methods = hash_create("Extensible Node Methods",
|
||||
100, &ctl, HASH_ELEM);
|
||||
|
||||
Reference in New Issue
Block a user