blob: a3bbd562407256188d9f9b9a73d2cc43e06e37e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#pragma once
#include <Interpreters/Context_fwd.h>
#include <Interpreters/InDepthNodeVisitor.h>
#include <Parsers/IAST.h>
namespace DB
{
class ASTFunction;
/// Removes unneeded injective functions inside `uniq*()`.
class RemoveInjectiveFunctionsMatcher
{
public:
struct Data : public WithContext
{
explicit Data(ContextPtr context_) : WithContext(context_) {}
};
static void visit(ASTPtr & ast, const Data & data);
static void visit(ASTFunction &, ASTPtr & ast, const Data & data);
static bool needChildVisit(const ASTPtr & node, const ASTPtr & child);
};
using RemoveInjectiveFunctionsVisitor = InDepthNodeVisitor<RemoveInjectiveFunctionsMatcher, true>;
}
|