Decouple pgrx test socket dir from PGDATA#2334
Merged
Merged
Conversation
eeeebbbbrrrr
added a commit
that referenced
this pull request
Jun 23, 2026
Welcome to pgrx v0.19.1. A followup to v0.19.0 that resolves some missing Postgres pg19 symbols and cleans up how cargo-pgrx's test framework manages postgres socket directories. As always run `cargo install cargo-pgrx --version 0.19.1 --locked` and run `cargo pgrx upgrade` to fixup your extension crates. See the [release notes for v0.19.0](https://github.com/pgcentralfoundation/pgrx/releases/tag/v0.19.0) for details. ## What's Changed * Decouple pgrx test socket dir from PGDATA by @eeeebbbbrrrr in #2334 * restore missing binding symbols for pg19 by @eeeebbbbrrrr in #2335 **Full Changelog**: v0.19.0...v0.19.1
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.
Decouples the cargo pgrx test Postgres Unix socket directory from the test PGDATA directory.
PGDATA remains unique per test invocation with the existing PGVER-PID suffix, so concurrent cargo pgrx test processes still get isolated clusters. On Unix, the test harness now uses a separate socket directory under
/tmp/pgrx-test-sockets-PGVER-PID, avoiding workspace-mounted filesystem permission issues while keeping socket paths short.Changes