-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add On-demand WAL Download to logicalfuncs (#7960)
We implemented on-demand WAL download for walsender, but other things that may want to read the WAL from safekeepers don't do that yet. This PR makes it do that by adding the same set of hooks to logicalfuncs. Addresses #7959 Also relies on: neondatabase/postgres#438 neondatabase/postgres#437 neondatabase/postgres#436
- Loading branch information
Sasha Krassovsky
authored
Jun 12, 2024
1 parent
2751867
commit b7a0c2b
Showing
8 changed files
with
66 additions
and
7 deletions.
There are no files selected for viewing
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
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
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
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
Submodule postgres-v14
updated
2 files
+12 −4 | src/backend/replication/logical/logicalfuncs.c | |
+1 −0 | src/include/replication/logical.h |
Submodule postgres-v15
updated
2 files
+11 −3 | src/backend/replication/logical/logicalfuncs.c | |
+1 −0 | src/include/replication/logical.h |
Submodule postgres-v16
updated
2 files
+11 −3 | src/backend/replication/logical/logicalfuncs.c | |
+1 −0 | src/include/replication/logical.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"v16": ["16.3", "b228f20372ebcabfd7946647cb7adbd38bacb14a"], | ||
"v15": ["15.7", "c2c3d40534db97d83dd7e185d1971e707fa2f445"], | ||
"v14": ["14.12", "17e0f5ff4e1905691aa40e1e08f9b79b14c99652"] | ||
"v16": ["16.3", "9837db157837fcf43ef7348be0017d3a2238cd27"], | ||
"v15": ["15.7", "e22098d86d6c40276b6bd75c29133a33fb283ab6"], | ||
"v14": ["14.12", "4c51945a6167ca06c0169e7a4ca5a8e7ffa3faba"] | ||
} |
b7a0c2b
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.
3292 tests run: 3134 passed, 3 failed, 155 skipped (full report)
Failures on Postgres 14
test_pgbench_intensive_init_workload[vanilla-github-actions-selfhosted-1000]
: releasetest_basebackup_with_high_slru_count[github-actions-selfhosted-sequential-10-13-30]
: releasetest_basebackup_with_high_slru_count[github-actions-selfhosted-vectored-10-13-30]
: releaseFlaky tests (1)
Postgres 15
test_subscriber_restart
: releaseCode coverage* (full report)
functions
:31.6% (6624 of 20990 functions)
lines
:48.6% (51486 of 106045 lines)
* collected from Rust tests only
b7a0c2b at 2024-06-12T02:21:41.436Z :recycle: