mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
4088c0a7f3
Automated register all functions with below naming convention by iterating through the symbols: void DB::registerXXX(DB::FunctionFactory &)
26 lines
485 B
C++
26 lines
485 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionBitTestMany.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace
|
|
{
|
|
|
|
struct BitTestAnyImpl
|
|
{
|
|
template <typename A, typename B>
|
|
static inline UInt8 apply(A a, B b) { return (a & b) != 0; }
|
|
};
|
|
|
|
struct NameBitTestAny { static constexpr auto name = "bitTestAny"; };
|
|
using FunctionBitTestAny = FunctionBitTestMany<BitTestAnyImpl, NameBitTestAny>;
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(BitTestAny)
|
|
{
|
|
factory.registerFunction<FunctionBitTestAny>();
|
|
}
|
|
|
|
}
|