Add PostgreSQL bulk load via COPY FROM STDIN#65
Merged
martinv13 merged 1 commit intoJun 19, 2026
Conversation
Overrides bulk_insert() in PostgreSQLDialect to stream an in-memory CSV payload to PostgreSQL using the native COPY protocol instead of SQLAlchemy executemany. Supports both psycopg2 (copy_expert) and psycopg3 (cursor.copy), falling back to the base-class implementation for other drivers. Adds integration tests parametrised over both drivers, and updates the PostgreSQL CI workflow to a matrix that runs once per driver. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QvgSwLLGgKaDbZaEYYp7BJ
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.
Summary
bulk_insert()inPostgreSQLDialectto stream an in-memory CSV payload to PostgreSQL using the nativeCOPY FROM STDINprotocol instead of SQLAlchemyexecutemanycursor.copy_expert) and psycopg3 (cursor.copy), with automatic fallback toexecutemanyfor other driversTest plan
tests/test_bulk_insert_postgres.py— 7 test cases × 2 drivers (14 total): basic types, empty batch, numerics, boolean, datetime, bytea, scalar column defaultspsycopg2, one withpsycopg[binary]pytest -m "not dbtest")DB_STRINGis configured🤖 Generated with Claude Code