asyncpg icon indicating copy to clipboard operation
asyncpg copied to clipboard

A fast PostgreSQL Database Client Library for Python/asyncio.

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

How can i get scale and precision from get_attributes()? psycopg returns (Column(name='column_name', type_code=1043, display_size=None, internal_size=-1, precision=None, scale=None, null_ok=None) asyncpg returns Attribute( name='typname', type=Type(oid=19, name='name', kind='scalar', schema='pg_catalog')

I could not find any issue/question/pr related to this, so I'm starting a new one. It would be great to have query logging implemented inside `asyncpg`: - to see all...

I need to watch data changes in multiple tables. One option is to add triggers and log changes to another table, which can be polled by the app every few...

* **asyncpg version**: 0.25 * **PostgreSQL version**: 12+ * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a local PostgreSQL install?**: I use...

I can successfully connect to a PostgreSQL database and execute queries against a database to view the data the tables contain. However, when I try to execute an UPDATE, I...

aarch64 builds were included in version 0.21.0, but were removed from 0.22.0 onwards. It looks like this was due to the move to GitHub actions not including that build, but...

This branch allows type checking editors like VScode to determine that `async with pg.acquire() as conn` results in `conn` having a type of `asyncpg.connection.Connection`.

I guess this is less a feature request as a call to see whether anyone has done this before (apologies if this is not the right venue for this): create...

https://github.com/MagicStack/asyncpg/pull/900#issuecomment-1079653458 > Support for declaring [project metadata](https://packaging.python.org/en/latest/specifications/declaring-project-metadata/) or configuring `setuptools` via `pyproject.toml` files is still experimental and might change (or be removed) in future releases. As @abravalheri advised, we should...

* **asyncpg version**: 0.25.0 * **PostgreSQL version**: 13.4 (Ubuntu 13.4-1.pgdg21.04+1) + Timescale 2.4.2 * **Do you use a PostgreSQL SaaS? If so, which? Can you reproduce the issue with a...