| 12 | { |
| 13 | |
| 14 | BlockIO InterpreterShowEnginesQuery::execute() |
| 15 | { |
| 16 | auto query_context = Context::createCopy(getContext()); |
| 17 | query_context->makeQueryContext(); |
| 18 | query_context->setCurrentQueryId(""); |
| 19 | |
| 20 | return executeQuery("SELECT * FROM system.table_engines ORDER BY name", query_context, QueryFlags{ .internal = true }).second; |
| 21 | } |
| 22 | |
| 23 | void registerInterpreterShowEnginesQuery(InterpreterFactory & factory); |
| 24 | void registerInterpreterShowEnginesQuery(InterpreterFactory & factory) |
nothing calls this directly
no test coverage detected