(conn, param)
| 781 | |
| 782 | @pytest.mark.parametrize("param", tx_params) |
| 783 | def test_set_transaction_param_not_intrans_external(conn, param): |
| 784 | value = param.values[0] |
| 785 | conn.set_autocommit(True) |
| 786 | conn.execute("begin") |
| 787 | with pytest.raises(psycopg.ProgrammingError): |
| 788 | getattr(conn, f"set_{param.name}")(value) |
| 789 | |
| 790 | |
| 791 | @skip_async |
nothing calls this directly
no test coverage detected
searching dependent graphs…