mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 00:42:29 +00:00
15 lines
159 B
C++
15 lines
159 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
#include <Parsers/ASTFunction.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct FunctionNameNormalizer
|
|
{
|
|
static void visit(IAST *);
|
|
};
|
|
|
|
}
|