mirror of
https://github.com/postgres/postgres.git
synced 2025-05-05 09:19:17 +03:00
Fix incorrect variable datatype.
Since slot_keep_segs indicates the number of WAL segments not LSN, its datatype should not be XLogRecPtr. Back-patch to v13 where this issue was added. Reported-by: Atsushi Torikoshi Author: Atsushi Torikoshi, tweaked by Fujii Masao Discussion: https://postgr.es/m/ebd0d674f3e050222238a960cac5251a@oss.nttdata.com
This commit is contained in:
parent
eb2c8a8f81
commit
654242fd81
@ -9601,7 +9601,7 @@ KeepLogSeg(XLogRecPtr recptr, XLogSegNo *logSegNo)
|
||||
/* Cap by max_slot_wal_keep_size ... */
|
||||
if (max_slot_wal_keep_size_mb >= 0)
|
||||
{
|
||||
XLogRecPtr slot_keep_segs;
|
||||
uint64 slot_keep_segs;
|
||||
|
||||
slot_keep_segs =
|
||||
ConvertToXSegs(max_slot_wal_keep_size_mb, wal_segment_size);
|
||||
|
Loading…
x
Reference in New Issue
Block a user