Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix compiler warnings on macOS (#9319)
## Problem On macOS: ``` /Users/runner/work/neon/neon//pgxn/neon/file_cache.c:623:19: error: variable 'has_remaining_pages' is used uninitialized whenever 'for' loop exits because its condition is false [-Werror,-Wsometimes-uninitialized] ``` ## Summary of changes - Initialise `has_remaining_pages` with `false`
- Loading branch information
baf27ba
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.
5085 tests run: 4878 passed, 0 failed, 207 skipped (full report)
Flaky tests (4)
Postgres 17
test_pg_regress[None]
: debug-x86-64Postgres 16
test_subscriber_restart
: release-x86-64Postgres 15
test_subscriber_restart
: release-x86-64test_restart_endpoint_after_switch_wal
: release-x86-64Code coverage* (full report)
functions
:31.4% (7506 of 23933 functions)
lines
:49.6% (60286 of 121609 lines)
* collected from Rust tests only
baf27ba at 2024-10-08T17:31:18.486Z :recycle: