(aconn)
| 61 | |
| 62 | |
| 63 | async def test_query_params_executemany(aconn): |
| 64 | cur = aconn.cursor() |
| 65 | |
| 66 | await cur.executemany("select $1, $2", [[1, 2], [3, 4]]) |
| 67 | assert cur._query.query == b"select $1, $2" |
| 68 | assert cur._query.params == [b"\x00\x03", b"\x00\x04"] |
| 69 | |
| 70 | |
| 71 | @pytest.mark.slow |
nothing calls this directly
no test coverage detected