ClickHouse/src/Interpreters/InterpreterShowFunctionsQuery.h

28 lines
510 B
C++
Raw Normal View History

#pragma once
#include <Interpreters/IInterpreter.h>
#include <Parsers/IAST_fwd.h>
namespace DB
{
class Context;
class InterpreterShowFunctionsQuery : public IInterpreter, WithMutableContext
{
public:
InterpreterShowFunctionsQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_);
BlockIO execute() override;
bool ignoreQuota() const override { return true; }
bool ignoreLimits() const override { return true; }
private:
ASTPtr query_ptr;
String getRewrittenQuery();
};
}