]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix error message related to end TLI in backup manifest
authorMichael Paquier <michael@paquier.xyz>
Sun, 18 Jan 2026 08:25:03 +0000 (17:25 +0900)
committerMichael Paquier <michael@paquier.xyz>
Sun, 18 Jan 2026 08:25:03 +0000 (17:25 +0900)
The code adding the WAL information included in a backup manifest is
cross-checked with the contents of the timeline history file of the end
timeline.  A check based on the end timeline, when it fails, reported
the value of the start timeline in the error message.  This error is
fixed to show the correct timeline number in the report.

This error report would be confusing for users if seen, because it would
provide an incorrect information, so backpatch all the way down.

Oversight in 0d8c9c1210c4.

Author: Man Zeng <zengman@halodbtech.com>
Discussion: https://postgr.es/m/tencent_0F2949C4594556F672CF4658@qq.com
Backpatch-through: 14

src/backend/backup/backup_manifest.c

index 618bd0d55501cff508486a2d4f78b182ebf6c82c..c805822e22b6c2afe1a8968682e70fa0068b1a0d 100644 (file)
@@ -251,7 +251,7 @@ AddWALInfoToBackupManifest(backup_manifest_info *manifest, XLogRecPtr startptr,
                if (first_wal_range && endtli != entry->tli)
                        ereport(ERROR,
                                        errmsg("expected end timeline %u but found timeline %u",
-                                                  starttli, entry->tli));
+                                                  endtli, entry->tli));
 
                /*
                 * If this timeline entry matches with the timeline on which the