Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c8ae318

Browse files
committed
Increase SHMEM_INDEX_SIZE from 32 to 64. We're currently at 40 entries in
ShmemIndex, so 64 leaves some headroom. Kevin Grittner
1 parent ec76265 commit c8ae318

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/storage/shmem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ extern void RequestAddinShmemSpace(Size size);
5050
/* max size of data structure string name */
5151
#define SHMEM_INDEX_KEYSIZE (48)
5252
/* estimated size of the shmem index table (not a hard limit) */
53-
#define SHMEM_INDEX_SIZE (32)
53+
#define SHMEM_INDEX_SIZE (64)
5454

5555
/* this is a hash bucket in the shmem index table */
5656
typedef struct

0 commit comments

Comments
 (0)