ClickHouse/dbms/src/Interpreters/InterpreterShowProcesslistQuery.h

30 lines
473 B
C++
Raw Normal View History

#pragma once
#include <Interpreters/IInterpreter.h>
2019-03-11 14:01:45 +00:00
#include <Parsers/IAST_fwd.h>
namespace DB
{
2017-05-23 18:24:43 +00:00
class Context;
2017-05-23 18:24:43 +00:00
/** Return list of currently executing queries.
*/
2015-06-18 02:11:05 +00:00
class InterpreterShowProcesslistQuery : public IInterpreter
{
public:
2017-05-23 18:24:43 +00:00
InterpreterShowProcesslistQuery(const ASTPtr & query_ptr_, Context & context_)
: query_ptr(query_ptr_), context(context_) {}
BlockIO execute() override;
private:
ASTPtr query_ptr;
2017-05-23 18:24:43 +00:00
Context & context;
};
}