mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
22 lines
499 B
C++
22 lines
499 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionBitTestMany.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
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>;
|
|
|
|
void registerFunctionBitTestAny(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionBitTestAny>();
|
|
}
|
|
|
|
}
|