| 26 | |
| 27 | |
| 28 | BlockIO InterpreterShowSettingQuery::execute() |
| 29 | { |
| 30 | auto query_context = Context::createCopy(getContext()); |
| 31 | query_context->makeQueryContext(); |
| 32 | query_context->setCurrentQueryId(""); |
| 33 | |
| 34 | return executeQuery(getRewrittenQuery(), query_context, QueryFlags{ .internal = true }).second; |
| 35 | } |
| 36 | |
| 37 | void registerInterpreterShowSettingQuery(InterpreterFactory & factory); |
| 38 | void registerInterpreterShowSettingQuery(InterpreterFactory & factory) |
nothing calls this directly
no test coverage detected