(self, query: Query, timing: bool)
| 120 | self.execute(f"CREATE DATABASE {scenario}") |
| 121 | |
| 122 | def explain(self, query: Query, timing: bool) -> "ExplainOutput": |
| 123 | result = self.query_all(query.explain(timing, self.dialect)) |
| 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: |
nothing calls this directly
no test coverage detected