ClickHouse/dbms/src/Functions/FunctionsComparison.cpp
2018-09-02 04:26:08 +03:00

24 lines
716 B
C++

#include <Functions/FunctionFactory.h>
namespace DB
{
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);
}
}