ClickHouse/dbms/Functions/registerFunctionsComparison.cpp
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

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);
}
}