mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
5b1eaba276
* 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]
24 lines
700 B
C++
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);
|
|
}
|
|
|
|
}
|