#pragma once #include #include 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(); }; }