(aconn)
| 621 | |
| 622 | |
| 623 | async def test_execute_binary(aconn): |
| 624 | cur = await aconn.execute("select %s, %s", [10, 20], binary=True) |
| 625 | assert await cur.fetchone() == (10, 20) |
| 626 | assert cur.format == 1 |
| 627 | assert cur.pgresult.fformat(0) == 1 |
| 628 | |
| 629 | |
| 630 | async def test_row_factory(aconn_cls, dsn): |