mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
18 lines
198 B
C++
18 lines
198 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ASTFunction;
|
|
|
|
class RewriteCountVariantsVisitor
|
|
{
|
|
public:
|
|
static void visit(ASTPtr &);
|
|
static void visit(ASTFunction &);
|
|
};
|
|
|
|
}
|