Skip to content

Commit c936b08

Browse files
author
Commitfest Bot
committed
[CF 6058] Marking shared buffer lookup table as HASH_FIXED_SIZE
This branch was automatically generated by a robot using patches from an email thread registered at: https://commitfest.postgresql.org/patch/6058 The branch will be overwritten each time a new patch version is posted to the thread, and also periodically to check for bitrot caused by changes on the master branch. Patch(es): https://www.postgresql.org/message-id/CAExHW5v0jh3F_wj86yC=qBfWk0uiT94qy=Z41uzAHLHh0SerRA@mail.gmail.com Author(s): Ashutosh Bapat
2 parents 454c046 + 9d0f0b3 commit c936b08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/storage/buffer/buf_table.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ InitBufTable(int size)
6262
SharedBufHash = ShmemInitHash("Shared Buffer Lookup Table",
6363
size, size,
6464
&info,
65-
HASH_ELEM | HASH_BLOBS | HASH_PARTITION);
65+
HASH_ELEM | HASH_BLOBS | HASH_PARTITION | HASH_FIXED_SIZE);
6666
}
6767

6868
/*

0 commit comments

Comments
 (0)