diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-10-01 16:37:15 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-10-01 16:42:26 +0300 |
commit | 5fa6c81a43d047a070eff1f711b90c084c6d3e31 (patch) | |
tree | 3fd2ae5c05c00a456ec712dd3b7dc04a4e90ec9f /src/include/access/xlog.h | |
parent | a39e78b710eb588e102aedd2828611d7bc74714b (diff) | |
download | postgresql-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/include/access/xlog.h')
-rw-r--r-- | src/include/access/xlog.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index 0b7bfa5f30e..0f068d91f38 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -194,7 +194,6 @@ extern bool EnableHotStandby; extern bool fullPageWrites; extern bool wal_log_hints; extern bool log_checkpoints; -extern int num_xloginsert_locks; /* WAL levels */ typedef enum WalLevel |