ClickHouse/dbms/src/Functions/registerFunctionsComparison.cpp
alexey-milovidov 5b1eaba276
Every function in its own file, part 6 (#3661)
* Every function in its own file, part 6 [#CLICKHOUSE-2]

* Every function in its own file, part 6 [#CLICKHOUSE-2]

* Every function in its own file, part 6 [#CLICKHOUSE-2]
2018-11-26 02:24:26 +03:00

24 lines
700 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);
}
}