ClickHouse/src/Interpreters/RewriteCountVariantsVisitor.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
340 B
C++
Raw Normal View History

2021-02-07 07:22:51 +00:00
#pragma once
#include <Parsers/IAST.h>
#include <Interpreters/Context_fwd.h>
2021-02-07 07:22:51 +00:00
namespace DB
{
class ASTFunction;
class RewriteCountVariantsVisitor
{
public:
explicit RewriteCountVariantsVisitor(ContextPtr context_) : context(context_) {}
void visit(ASTPtr &);
void visit(ASTFunction &);
private:
ContextPtr context;
2021-02-07 07:22:51 +00:00
};
}