mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
4088c0a7f3
Automated register all functions with below naming convention by iterating through the symbols: void DB::registerXXX(DB::FunctionFactory &)
26 lines
655 B
C++
26 lines
655 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionsComparison.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using FunctionEquals = FunctionComparison<EqualsOp, NameEquals>;
|
|
|
|
REGISTER_FUNCTION(Equals)
|
|
{
|
|
factory.registerFunction<FunctionEquals>();
|
|
}
|
|
|
|
template <>
|
|
ColumnPtr FunctionComparison<EqualsOp, NameEquals>::executeTupleImpl(
|
|
const ColumnsWithTypeAndName & x, const ColumnsWithTypeAndName & y, size_t tuple_size, size_t input_rows_count) const
|
|
{
|
|
return executeTupleEqualityImpl(
|
|
FunctionFactory::instance().get("equals", context),
|
|
FunctionFactory::instance().get("and", context),
|
|
x, y, tuple_size, input_rows_count);
|
|
}
|
|
|
|
}
|