2013-09-03 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/IInterpreter.h>
|
2019-03-11 14:01:45 +00:00
|
|
|
#include <Parsers/IAST_fwd.h>
|
2013-09-03 20:21:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
2017-05-23 18:24:43 +00:00
|
|
|
/** Return list of currently executing queries.
|
2013-09-03 20:21:28 +00:00
|
|
|
*/
|
2021-05-31 14:49:02 +00:00
|
|
|
class InterpreterShowProcesslistQuery : public IInterpreter, WithMutableContext
|
2013-09-03 20:21:28 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-05-31 14:49:02 +00:00
|
|
|
InterpreterShowProcesslistQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_)
|
|
|
|
: WithMutableContext(context_), query_ptr(query_ptr_) {}
|
2013-09-03 20:21:28 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockIO execute() override;
|
2013-09-03 20:21:28 +00:00
|
|
|
|
2021-02-04 15:59:05 +00:00
|
|
|
/// We ignore the quota and limits here because execute() will rewrite a show query as a SELECT query and then
|
|
|
|
/// the SELECT query will checks the quota and limits.
|
|
|
|
bool ignoreQuota() const override { return true; }
|
|
|
|
bool ignoreLimits() const override { return true; }
|
|
|
|
|
2013-09-03 20:21:28 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTPtr query_ptr;
|
2013-09-03 20:21:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|