| 322 | } |
| 323 | |
| 324 | InterpreterSelectQuery::InterpreterSelectQuery( |
| 325 | const ASTPtr & query_ptr_, |
| 326 | const ContextPtr & context_, |
| 327 | const SelectQueryOptions & options_, |
| 328 | const Names & required_result_column_names_) |
| 329 | : InterpreterSelectQuery(query_ptr_, context_, std::nullopt, nullptr, options_, required_result_column_names_) |
| 330 | {} |
| 331 | |
| 332 | InterpreterSelectQuery::InterpreterSelectQuery( |
| 333 | const ASTPtr & query_ptr_, |
nothing calls this directly
no test coverage detected