| 16 | } |
| 17 | |
| 18 | BlockIO InterpreterShowFunctionsQuery::execute() |
| 19 | { |
| 20 | auto query_context = Context::createCopy(getContext()); |
| 21 | query_context->makeQueryContext(); |
| 22 | query_context->setCurrentQueryId({}); |
| 23 | |
| 24 | return executeQuery(getRewrittenQuery(), query_context, QueryFlags{ .internal = true }).second; |
| 25 | } |
| 26 | |
| 27 | String InterpreterShowFunctionsQuery::getRewrittenQuery() |
| 28 | { |
nothing calls this directly
no test coverage detected