summaryrefslogtreecommitdiff
path: root/src/backend/utils/misc/guc.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-10-01 16:37:15 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-10-01 16:40:03 +0300
commitfc0acf43878bcd70dc1b701b054521d8553d2088 (patch)
treed53253cb1502a1c9478136f06049e49eac4cd5a7 /src/backend/utils/misc/guc.c
parente14ed8e2f5382185c9cd0215bf88dc90eb1907cb (diff)
Remove num_xloginsert_locks GUC, replace with a #define
I left the GUC in place for the beta period, so that people could experiment with different values. No-one's come up with any data that a different value would be better under some circumstances, so rather than try to document to users what the GUC, let's just hard-code the current value, 8.
Diffstat (limited to 'src/backend/utils/misc/guc.c')
-rw-r--r--src/backend/utils/misc/guc.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 21f283bc4b8..ea58cf6e50b 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -2120,17 +2120,6 @@ static struct config_int ConfigureNamesInt[] =
},
{
- {"xloginsert_locks", PGC_POSTMASTER, WAL_SETTINGS,
- gettext_noop("Sets the number of locks used for concurrent xlog insertions."),
- NULL,
- GUC_NOT_IN_SAMPLE
- },
- &num_xloginsert_locks,
- 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."),