2018-09-02 01:26:08 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionsComparison.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
using FunctionGreater = FunctionComparison<GreaterOp, NameGreater>;
|
|
|
|
|
|
|
|
void registerFunctionGreater(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionGreater>();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2020-10-17 14:23:37 +00:00
|
|
|
ColumnPtr FunctionComparison<GreaterOp, NameGreater>::executeTupleImpl(
|
|
|
|
const ColumnsWithTypeAndName & x, const ColumnsWithTypeAndName & y, size_t tuple_size, size_t input_rows_count) const
|
2018-09-02 01:26:08 +00:00
|
|
|
{
|
2020-02-23 22:46:52 +00:00
|
|
|
auto greater = FunctionFactory::instance().get("greater", context);
|
|
|
|
|
|
|
|
return executeTupleLessGreaterImpl(
|
|
|
|
greater,
|
|
|
|
greater,
|
|
|
|
FunctionFactory::instance().get("and", context),
|
|
|
|
FunctionFactory::instance().get("or", context),
|
|
|
|
FunctionFactory::instance().get("equals", context),
|
2020-10-17 14:23:37 +00:00
|
|
|
x, y, tuple_size, input_rows_count);
|
2018-09-02 01:26:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|