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