Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/include/access/multixact.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
#define MaxMultiXactOffset ((MultiXactOffset) 0xFFFFFFFF)

/* Number of SLRU buffers to use for multixact */
#define NUM_MULTIXACTOFFSET_BUFFERS 8
#define NUM_MULTIXACTMEMBER_BUFFERS 16
#define NUM_MULTIXACTOFFSET_BUFFERS 32
#define NUM_MULTIXACTMEMBER_BUFFERS 64

/*
* Possible multixact lock modes ("status"). The first four modes are for
Expand Down
2 changes: 1 addition & 1 deletion src/include/access/subtrans.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#define SUBTRANS_H

/* Number of SLRU buffers to use for subtrans */
#define NUM_SUBTRANS_BUFFERS 32
#define NUM_SUBTRANS_BUFFERS 64

typedef struct SubTransData
{
Expand Down
Loading