aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2023-04-17 14:22:06 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2023-04-17 14:22:06 -0400
commit9b0c1f2137fba0292b772b98b5fbccb86aedb336 (patch)
treece1893cbe5f8e4fa6dab8ca775ee88b3ce6f26da /src
parent048caf8d757a94db043ddbc4d0b1131c1544fee1 (diff)
downloadpostgresql-9b0c1f2137fba0292b772b98b5fbccb86aedb336.tar.gz
postgresql-9b0c1f2137fba0292b772b98b5fbccb86aedb336.zip
Avoid trying to write an empty WAL record in log_newpage_range().
If the last few pages in the specified range are empty (all zero), then log_newpage_range() could try to emit an empty WAL record containing no FPIs. This at least upsets an Assert in ReserveXLogInsertLocation, and might perhaps have bad real-world consequences in non-assert builds. This has been broken since log_newpage_range() was introduced, but the case was hard if not impossible to hit before commit 3d6a98457 decided it was okay to leave VM and FSM pages intentionally zero. Nonetheless, it seems prudent to back-patch. log_newpage_range() was added in v12 but later back-patched, so this affects all supported branches. Matthias van de Meent, per report from Justin Pryzby Discussion: https://postgr.es/m/ZD1daibg4RF50IOj@telsasoft.com
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/xloginsert.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/backend/access/transam/xloginsert.c b/src/backend/access/transam/xloginsert.c
index 24a6f3148b1..78a95344f91 100644
--- a/src/backend/access/transam/xloginsert.c
+++ b/src/backend/access/transam/xloginsert.c
@@ -1088,6 +1088,10 @@ log_newpage_range(Relation rel, ForkNumber forkNum,
blkno++;
}
+ /* Nothing more to do if all remaining blocks were empty. */
+ if (nbufs == 0)
+ break;
+
/* Write WAL record for this batch. */
XLogBeginInsert();