2014-08-22 00:57:20 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2019-12-29 01:13:17 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
2018-09-02 01:26:08 +00:00
|
|
|
void registerFunctionsComparison(FunctionFactory & factory)
|
2016-08-05 12:30:56 +00:00
|
|
|
{
|
2018-09-02 01:26:08 +00:00
|
|
|
registerFunctionEquals(factory);
|
|
|
|
registerFunctionNotEquals(factory);
|
|
|
|
registerFunctionLess(factory);
|
|
|
|
registerFunctionGreater(factory);
|
|
|
|
registerFunctionLessOrEquals(factory);
|
|
|
|
registerFunctionGreaterOrEquals(factory);
|
2016-08-05 12:30:56 +00:00
|
|
|
}
|
|
|
|
|
2014-08-22 00:57:20 +00:00
|
|
|
}
|