aboutsummaryrefslogtreecommitdiff
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:42:26 +0300
commit5fa6c81a43d047a070eff1f711b90c084c6d3e31 (patch)
tree3fd2ae5c05c00a456ec712dd3b7dc04a4e90ec9f /src/backend/utils/misc/guc.c
parenta39e78b710eb588e102aedd2828611d7bc74714b (diff)
downloadpostgresql-5fa6c81a43d047a070eff1f711b90c084c6d3e31.tar.gz
postgresql-5fa6c81a43d047a070eff1f711b90c084c6d3e31.zip
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 d2083142589..8111b93074a 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -2144,17 +2144,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."),