blob: a93fbe8bbdbd0ee713524a47883ed31f13ea4941 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include <Parsers/IAST_fwd.h>
namespace DB
{
/// Rewrite function names to their canonical forms.
/// For example, rewrite (1) to (2)
/// (1) SELECT suM(1), AVG(2);
/// (2) SELECT sum(1), avg(2);
///
/// It's used to help projection query analysis matching function nodes by their canonical names.
/// See the comment of ActionsDAG::foldActionsByProjection for details.
struct FunctionNameNormalizer
{
static void visit(IAST *);
};
}
|