(&self, sql: String)
| 282 | } |
| 283 | |
| 284 | async fn execute_query(&self, sql: String) -> DriverResult<QueryResult> { |
| 285 | ClickHouseDriver::execute_query(self, sql).await |
| 286 | } |
| 287 | |
| 288 | async fn execute_query_with_id( |
| 289 | &self, |
nothing calls this directly
no test coverage detected