asyncpg
asyncpg copied to clipboard
A fast PostgreSQL Database Client Library for Python/asyncio.
* **asyncpg version**: asyncpg==0.29.0 * **PostgreSQL version**: Postgres 16 (Azure Postgres Flexible Server) * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a...
The latest commits which include gssauth, haven’t been released yet. Is there an ETA when this would be released? Building from master too doesn’t work since a folder is missing....
I am using asyncpg to query an postgres rds cluster. In my app I use asyncpg connection pools to aquire a connection and query the DB. I recently stood up...
* **asyncpg version**: 0.29.0 * **PostgreSQL version**: ANY * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a local PostgreSQL install?**: Can reproduce...
Terminate function does not work when a stream is cancelled prematurely when in an anyio task group
* **asyncpg version**: 0.29.0 * **PostgreSQL version**: 14.10 * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a local PostgreSQL install?**: Yes, I...
* **asyncpg version**: 0.29.0 * **PostgreSQL version**: 16.2 * **Python version**: 3.11.9 I have this postgres table: ```postgres version float4, releaseurl varchar(128), releaseinfo varchar(128), timestamp int4, ``` where version is...
I was having atrocious and unacceptable delays in my production environment that I wasn't seeing locally, using CockroachDB cloud. Found the cause was the introspection of types. I'm using the...
#### Problem Crunchydata Postgresql Operator creates passwords by default using the `US-ASCII` spec. Some of them with special characters in it including `@`, `[`, `]`, `/` that seem to cause...
As discussed in #128, it might be a cool idea to have a "middleware" layer in asyncpg where people can register their own code to be ran pre or post...
`asyncpg` converts timestamps to `datetime.datetime`. If a column has type `timestamp without time zone` then the datetime object's `.tzinfo` is `None`. This means `datetime` implicitly treats this datetime as if...