#include #include #include #include #include namespace DB { BlockIO InterpreterShowProcesslistQuery::execute() { return executeQuery("SELECT * FROM system.processes ORDER BY elapsed DESC", getContext(), true); } }