mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
15 lines
161 B
C++
15 lines
161 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
#include <Parsers/ASTFunction.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct FunctionNameNormalizer
|
|
{
|
|
static void visit(ASTPtr &);
|
|
};
|
|
|
|
}
|