Sort descendingly by elapsed time

This commit is contained in:
Robert Schulze 2023-03-31 09:36:03 +00:00
parent 191f780223
commit 8d91a9f4c2
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -12,7 +12,7 @@ namespace DB
BlockIO InterpreterShowProcesslistQuery::execute()
{
return executeQuery("SELECT * FROM system.processes ORDER BY query_id", getContext(), true);
return executeQuery("SELECT * FROM system.processes ORDER BY elapsed DESC", getContext(), true);
}
}