(conn: psycopg.Connection, sql: str)
| 592 | |
| 593 | |
| 594 | def _run_sql(conn: psycopg.Connection, sql: str) -> None: |
| 595 | print(f"> {sql}") |
| 596 | with conn.cursor() as cur: |
| 597 | cur.execute(sql.encode("utf-8")) |
| 598 | |
| 599 | |
| 600 | def _handle_lingering_services(kill: bool = False) -> None: |
no test coverage detected