asyncpg icon indicating copy to clipboard operation
asyncpg copied to clipboard

A fast PostgreSQL Database Client Library for Python/asyncio.

Results 213 asyncpg issues
Sort by recently updated
recently updated
newest added

* **asyncpg version**: 0.26.0 * **PostgreSQL version**:14.2-4 * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a local PostgreSQL install?**: * **Python version**:3.10.5...

* **asyncpg version**: 0.15.0 * **PostgreSQL version**: 10.3 * **local PostgreSQL**: * **Python version**: 3.6.5 * **Platform**: Ubuntu 14.04.5 * **Do you use pgbouncer?**: no * **Did you install asyncpg...

* **asyncpg version**:0.26 * **PostgreSQL version**:14.2 * **Python version**:3.10 * **Platform**: Ubuntu 20.04 * **Do you use pgbouncer?**: No * **Did you install asyncpg with pip?**: yes * **Can the...

Hi there, This PR closes issue #939, and adds support for a `where` parameter in the `copy_to` family of methods. It is not a breaking change and will not affect...

Please add a section in your documentation on how to test code that uses pool, fetch, executemany etc using pytest. I could not find anything on stackoverflow or issues where...

* **asyncpg version**: 0.17.0 * **PostgreSQL version**: 10.5 * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a local PostgreSQL install?**: * **Python...

* **asyncpg version**: 0.20.1 * **Cockroachdb version**: v20.1.0 (connected to a 5-node on premise cluster) * **Python version**: 3.8.0 * **Platform**: Linux * **Do you use pgbouncer?**: No * **Did...

Python 3.6 reached end-of-life [back in December](https://peps.python.org/pep-0494/#lifespan). Since 0.26.0 was just released with support for 3.6, the next release should probably drop support for it.

This is a work in progress and still produces errors when type checking the codebase. I added type hints to the Python files where it was feasible and updated the...

Hi there! Since version 12, PostgreSQL has supported a `WHERE` clause within `COPY ... FROM` statements: ``` COPY table_name [ ( column_name [, ...] ) ] FROM { 'filename' |...