(self, statement: str)
| 124 | return ExplainOutput("\n".join([col for line in result for col in line])) |
| 125 | |
| 126 | def execute(self, statement: str) -> None: |
| 127 | with self.conn.cursor() as cursor: |
| 128 | cursor.execute(statement.encode()) |
| 129 | |
| 130 | def execute_all(self, statements: list[str]) -> None: |
| 131 | with self.conn.cursor() as cursor: |
no test coverage detected