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:40:03 +0300 |
commit | fc0acf43878bcd70dc1b701b054521d8553d2088 (patch) | |
tree | d53253cb1502a1c9478136f06049e49eac4cd5a7 /src/include/access/xlog.h | |
parent | e14ed8e2f5382185c9cd0215bf88dc90eb1907cb (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/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 1eaa5c1c210..86a1c40d2a2 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -192,7 +192,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 |