feat(psycopg): add support for Windows via TCP loopback proxy - #1471
Open
kgala2 wants to merge 2 commits into
Open
feat(psycopg): add support for Windows via TCP loopback proxy#1471kgala2 wants to merge 2 commits into
kgala2 wants to merge 2 commits into
Conversation
kgala2
marked this pull request as ready for review
August 27, 2026 23:56
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.
Description
Adds Windows OS support for the
psycopg(v3) database driver in the Cloud SQL Python Connector.Context & Implementation
psycopg(vialibpq) does not support Unix domain sockets on Windows. When running on Windows (platform.system() == "Windows"), the connector creates a local TCP loopback listener on127.0.0.1with an OS-allocated ephemeral port (port=0), passeshost="127.0.0.1", port=ephemeral_porttopsycopg.connect(), and proxies data over the established TLS connection.AF_UNIX) approach in a user-isolated temporary directory (tempfile.mkdtemp()).not hasattr(socket, "AF_UNIX")test skips across unit and system tests.mockable_socketpair()to dynamically use the socket family (s1.family) so tests execute cleanly on both Windows (AF_INET) and POSIX (AF_UNIX).test_connect_wrapper_windowsverifying the Windows TCP loopback path and port assignment.google.cloud.sql.connector.psycopg.Testing
pytest tests/unit/test_psycopg.py --cov=google.cloud.sql.connector.psycopg(100% coverage, 24/24 tests passing)pytest tests/unit/(197/197 unit tests passing)ruff checkandruff formatpassed.