asyncpg
RESET ALL;
setting "" is not allowed
import asyncioimport asyncpg # Using asyncpg==0.29.0async def main(): # Put a real connection string in here db_url_pg = "postgresql://<WORKSPACE_ID>:<API_KEY>@<REGION>.sql.xata.sh/<DATABASE_NAME>:<BRANCH>?ssl=require" pool = await asyncpg.create_pool(dsn=db_url_pg) connection = await pool.acquire() version = await connection.fetchval("SELECT version();") print(version) await pool.release(connection, timeout=10) # Raises asyncpg.exceptions._base.UnknownPostgresError: setting "" is not allowedif __name__ == "__main__": asyncio.run(main())