-
Notifications
You must be signed in to change notification settings - Fork 492
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add --save_records option to pg_waldump (#10626)
## Problem Make it possible to dump WAL records in format recognised by walredo process. Intended usage: ``` pg_waldump -R 1663/5/16396 -B 771727 000000010000000100000034 --save-records=/tmp/walredo.records postgres --wal-redo < /tmp/walredo.records > /tmp/page.img ``` ## Summary of changes Related Postgres PRs: neondatabase/postgres#575 neondatabase/postgres#572 --------- Co-authored-by: Konstantin Knizhnik <knizhnik@neon.tech>
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Submodule postgres-v16
updated
3 files
+3 −0 | src/backend/access/transam/xlogreader.c | |
+75 −1 | src/bin/pg_waldump/pg_waldump.c | |
+1 −0 | src/include/access/xlogreader.h |
Submodule postgres-v17
updated
3 files
+3 −0 | src/backend/access/transam/xlogreader.c | |
+75 −1 | src/bin/pg_waldump/pg_waldump.c | |
+1 −0 | src/include/access/xlogreader.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0cf0119
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
7576 tests run: 7185 passed, 0 failed, 391 skipped (full report)
Flaky tests (2)
Postgres 16
test_scrubber_physical_gc_ancestors[2]
: release-arm64-with-lfcPostgres 15
test_scrubber_physical_gc_ancestors[2]
: release-arm64-with-lfcCode coverage* (full report)
functions
:33.2% (8582 of 25827 functions)
lines
:49.1% (72282 of 147282 lines)
* collected from Rust tests only
0cf0119 at 2025-02-10T18:08:41.221Z :recycle: