2018-09-02 01:26:08 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionsComparison.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
using FunctionGreaterOrEquals = FunctionComparison<GreaterOrEqualsOp, NameGreaterOrEquals>;
|
|
|
|
|
|
|
|
void registerFunctionGreaterOrEquals(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionGreaterOrEquals>();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void FunctionComparison<GreaterOrEqualsOp, NameGreaterOrEquals>::executeTupleImpl(Block & block, size_t result, const ColumnsWithTypeAndName & x,
|
|
|
|
const ColumnsWithTypeAndName & y, size_t tuple_size,
|
|
|
|
size_t input_rows_count)
|
|
|
|
{
|
|
|
|
return executeTupleLessGreaterImpl<
|
2018-09-02 01:40:47 +00:00
|
|
|
FunctionComparison<GreaterOp, NameGreater>,
|
|
|
|
FunctionGreaterOrEquals>(block, result, x, y, tuple_size, input_rows_count);
|
2018-09-02 01:26:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|