mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
25 lines
701 B
C++
25 lines
701 B
C++
namespace DB
|
|
{
|
|
|
|
class FunctionFactory;
|
|
|
|
void registerFunctionEquals(FunctionFactory & factory);
|
|
void registerFunctionNotEquals(FunctionFactory & factory);
|
|
void registerFunctionLess(FunctionFactory & factory);
|
|
void registerFunctionGreater(FunctionFactory & factory);
|
|
void registerFunctionLessOrEquals(FunctionFactory & factory);
|
|
void registerFunctionGreaterOrEquals(FunctionFactory & factory);
|
|
|
|
|
|
void registerFunctionsComparison(FunctionFactory & factory)
|
|
{
|
|
registerFunctionEquals(factory);
|
|
registerFunctionNotEquals(factory);
|
|
registerFunctionLess(factory);
|
|
registerFunctionGreater(factory);
|
|
registerFunctionLessOrEquals(factory);
|
|
registerFunctionGreaterOrEquals(factory);
|
|
}
|
|
|
|
}
|