ClickHouse/dbms/src/Functions/bitTestAny.cpp
alexey-milovidov e00ce0bb57
Every function in its own file, part 7 (#3666)
* Every function in its own file, part 7 [#CLICKHOUSE-2]

* Every function in its own file, part 7 [#CLICKHOUSE-2]

* Every function in its own file, part 7 [#CLICKHOUSE-2]

* Every function in its own file, part 7 [#CLICKHOUSE-2]

* Every function in its own file, part 7 [#CLICKHOUSE-2]

* Fixed build #3666
2018-11-26 19:20:40 +03:00

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>();
}
}