When doing a query like this:
-- name: DeleteAuthorResult :execrows
DELETE
FROM authors
WHERE id = $1 OR id = $2;
the result will be something like this:
async def delete_author_result(conn: asyncpg.Connection, *, id: int, id: int) -> int:
which does not work
When doing a query like this:
the result will be something like this:
which does not work