aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/misc/guc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/utils/misc/guc.c')
-rw-r--r--src/backend/utils/misc/guc.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index d6200616de8..5aefd1b62c5 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -2038,6 +2038,17 @@ static struct config_int ConfigureNamesInt[] =
},
{
+ {"xloginsert_slots", PGC_POSTMASTER, WAL_SETTINGS,
+ gettext_noop("Sets the number of slots for concurrent xlog insertions."),
+ NULL,
+ GUC_NOT_IN_SAMPLE
+ },
+ &num_xloginsert_slots,
+ 8, 1, 1000,
+ NULL, NULL, NULL
+ },
+
+ {
/* see max_connections */
{"max_wal_senders", PGC_POSTMASTER, REPLICATION_SENDING,
gettext_noop("Sets the maximum number of simultaneously running WAL sender processes."),