We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I think it would be convenient to have connection execute and fetch.. methods in pool. Because single queries is not so rare. I mean:
execute
fetch..
async with pool.acquire() as con: await con.fetch('SELECT ...')
Would be just:
await pool.fetch('SELECT ...')
I can make PR if you like it.