| 205 | } |
| 206 | |
| 207 | InterpreterSelectQuery::InterpreterSelectQuery( |
| 208 | const ASTPtr & query_ptr_, |
| 209 | ContextPtr context_, |
| 210 | const SelectQueryOptions & options_, |
| 211 | const Names & required_result_column_names_) |
| 212 | : InterpreterSelectQuery(query_ptr_, context_, nullptr, std::nullopt, nullptr, options_, required_result_column_names_) |
| 213 | { |
| 214 | } |
| 215 | |
| 216 | InterpreterSelectQuery::InterpreterSelectQuery( |
| 217 | const ASTPtr & query_ptr_, |
nothing calls this directly
no test coverage detected