mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
24 lines
724 B
C++
24 lines
724 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionsComparison.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionLess = FunctionComparison<LessOp, NameLess>;
|
|
|
|
void registerFunctionLess(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionLess>();
|
|
}
|
|
|
|
template <>
|
|
void FunctionComparison<LessOp, NameLess>::executeTupleImpl(Block & block, size_t result, const ColumnsWithTypeAndName & x,
|
|
const ColumnsWithTypeAndName & y, size_t tuple_size,
|
|
size_t input_rows_count)
|
|
{
|
|
return executeTupleLessGreaterImpl<FunctionLess, FunctionLess>(block, result, x, y, tuple_size, input_rows_count);
|
|
}
|
|
|
|
}
|