pgsql: Fix LSN format in REPACK worker debug message

From: Álvaro Herrera <alvherre(at)kurilemu(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix LSN format in REPACK worker debug message
Date: 2026-07-20 11:52:56
Message-ID: E1wlmYK-000000001Pf-3NXk@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix LSN format in REPACK worker debug message

Commit 6f6f284c7ee4 introduced use of LSN_FORMAT_ARGS across the whole
tree to remove use of manual bit-shifting, and commit 2633dae2e487
changed the printf format to be %X/%08X; however commit 28d534e2ae0a
violated both conventions by reintroducing the old manual-shift style
with the deprecated %X/%X format in one debug message. Make that new
message conform to our style.

Author: kenny <kennychen851228(at)gmail(dot)com>
Backpatch-through: 19
Discussion: https://postgr.es/m/CAPXstDuWD8jg0=C8PXTXGSTTsZcjqJ+u+xKCrMpN99CXsxQzCg@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/c94409ebc3d7e9179d517736cbe9a948571f7c85

Modified Files
--------------
src/backend/commands/repack_worker.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Fujii Masao 2026-07-20 12:43:19 pgsql: Avoid ERROR in recovery target GUC assign hooks
Previous Message Álvaro Herrera 2026-07-20 10:13:47 pgsql: Move code to get_tables_to_repack_partitioned