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.29.0 * **PostgreSQL version**: 13.8 * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a local PostgreSQL install?**: local postgres...

I would like to use asyncpg through a socks 5 proxy. I need this because the postgresql instances are running inside a docker overlay network (swarm). The IP addresses of...

Use `markcoroutinefunction` (available in Python 3.12+) to make `inspect.iscoroutinefunction()` return the correct answer for wrapped connection methods. Fixes: #1133

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

Can you provide the current transaction's state as a public interface? (started, committed, aborted, etc). I have some code that is doing some more complex transaction management, and needs to...

* Moved `PostgresMessageMeta` and `PostgresMessage` into their own file to make it easier to add typings later on * Re-exported `PostgresMessageMeta` and `PostgresMessage` from `asyncpg.exceptions._base` to maintain backwards compatibility *...

* **asyncpg version**: 0.29.0 * **PostgreSQL version**: 15.6 * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a local PostgreSQL install?**: Local Postgres...

Hi, When i have this error : 'remaining connection slots are reserved for', the password is displayed in clear text in the logs: `ConnectionParameters(user='', password='', ...` The usage of `SecretStr`(pydantic)...