Add TestReplayXversion module for cross-version WAL replay testing#42
Open
x4m wants to merge 3 commits into
Open
Add TestReplayXversion module for cross-version WAL replay testing#42x4m wants to merge 3 commits into
x4m wants to merge 3 commits into
Conversation
Test that WAL generated by the .0 release of a major version replays correctly on the current STABLE binary. This catches backwards- compatibility regressions in WAL replay code, such as the self-deadlock in RecordNewMultiXact introduced by commit 0852643e1c6. The .0 binary is built once and cached. Each run generates fresh WAL (including 2500 multixacts via the savepoint trick to cross an SLRU page boundary) and verifies that a STABLE standby can replay it.
Run the .0 regression tests via pg_regress against the .0 primary for diverse WAL coverage. The regression test files are preserved in inst-dot0/regress/ during the build phase. A 180-second watchdog kills pg_regress if it hangs.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Test that WAL generated by the .0 release of a major version replays correctly on the current STABLE binary. This catches backwards- compatibility regressions in WAL replay code, such as the self-deadlock in RecordNewMultiXact introduced by commit 0852643e1c6.
The .0 binary is built once and cached. Each run generates fresh WAL (including 2500 multixacts via the savepoint trick to cross an SLRU page boundary) and verifies that a STABLE standby can replay it.
Written using Cursor, needs more testing. I've fixed some issues that catched my eye, but some more review is definitely needed.