mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
e00ce0bb57
* 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
22 lines
499 B
C++
22 lines
499 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionBitTestMany.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct BitTestAllImpl
|
|
{
|
|
template <typename A, typename B>
|
|
static inline UInt8 apply(A a, B b) { return (a & b) == b; }
|
|
};
|
|
|
|
struct NameBitTestAll { static constexpr auto name = "bitTestAll"; };
|
|
using FunctionBitTestAll = FunctionBitTestMany<BitTestAllImpl, NameBitTestAll>;
|
|
|
|
void registerFunctionBitTestAll(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionBitTestAll>();
|
|
}
|
|
|
|
}
|