ClickHouse/src/Interpreters/FunctionNameNormalizer.h

14 lines
130 B
C++
Raw Normal View History

2021-02-14 11:09:36 +00:00
#pragma once
#include <Parsers/IAST_fwd.h>
2021-02-14 11:09:36 +00:00
namespace DB
{
struct FunctionNameNormalizer
{
2021-02-14 12:53:50 +00:00
static void visit(IAST *);
2021-02-14 11:09:36 +00:00
};
}