diff options
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index a69337f2d4b..d36272ab4ff 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7916,7 +7916,7 @@ KeepLogSeg(XLogRecPtr recptr, XLogSegNo *logSegNo) * If WAL summarization is in use, don't remove WAL that has yet to be * summarized. */ - keep = GetOldestUnsummarizedLSN(NULL, NULL, false); + keep = GetOldestUnsummarizedLSN(NULL, NULL); if (keep != InvalidXLogRecPtr) { XLogSegNo unsummarized_segno; |