ClickHouse/dbms/src/Interpreters/InterpreterShowProcesslistQuery.cpp

19 lines
360 B
C++
Raw Normal View History

#include <IO/ReadBufferFromString.h>
2016-12-12 07:24:56 +00:00
2017-05-23 18:24:43 +00:00
#include <Interpreters/Context.h>
#include <Interpreters/executeQuery.h>
#include <Interpreters/InterpreterShowProcesslistQuery.h>
2016-12-12 07:24:56 +00:00
#include <Parsers/ASTQueryWithOutput.h>
2016-12-12 07:24:56 +00:00
namespace DB
{
BlockIO InterpreterShowProcesslistQuery::execute()
{
2017-05-23 18:24:43 +00:00
return executeQuery("SELECT * FROM system.processes", context, true);
2016-12-12 07:24:56 +00:00
}
}