2019-01-31 13:26:11 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
2019-10-11 11:24:14 +00:00
|
|
|
|
|
|
|
// TODO include this last because of a broken roaring header. See the comment
|
|
|
|
// inside.
|
2019-01-31 13:26:11 +00:00
|
|
|
#include <Functions/FunctionsBitmap.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
void registerFunctionsBitmap(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionBitmapBuild>();
|
|
|
|
factory.registerFunction<FunctionBitmapToArray>();
|
2019-08-05 02:27:12 +00:00
|
|
|
factory.registerFunction<FunctionBitmapSubsetInRange>();
|
2019-09-17 06:34:08 +00:00
|
|
|
factory.registerFunction<FunctionBitmapSubsetLimit>();
|
2019-11-02 10:10:48 +00:00
|
|
|
factory.registerFunction<FunctionBitmapTransform>();
|
2019-01-31 13:26:11 +00:00
|
|
|
|
|
|
|
factory.registerFunction<FunctionBitmapSelfCardinality>();
|
2019-09-18 08:30:18 +00:00
|
|
|
factory.registerFunction<FunctionBitmapMin>();
|
|
|
|
factory.registerFunction<FunctionBitmapMax>();
|
2019-01-31 13:26:11 +00:00
|
|
|
factory.registerFunction<FunctionBitmapAndCardinality>();
|
|
|
|
factory.registerFunction<FunctionBitmapOrCardinality>();
|
|
|
|
factory.registerFunction<FunctionBitmapXorCardinality>();
|
|
|
|
factory.registerFunction<FunctionBitmapAndnotCardinality>();
|
|
|
|
|
|
|
|
factory.registerFunction<FunctionBitmapAnd>();
|
|
|
|
factory.registerFunction<FunctionBitmapOr>();
|
|
|
|
factory.registerFunction<FunctionBitmapXor>();
|
|
|
|
factory.registerFunction<FunctionBitmapAndnot>();
|
|
|
|
|
2019-05-12 14:47:31 +00:00
|
|
|
factory.registerFunction<FunctionBitmapHasAll>();
|
|
|
|
factory.registerFunction<FunctionBitmapHasAny>();
|
2019-06-05 03:21:30 +00:00
|
|
|
factory.registerFunction<FunctionBitmapContains>();
|
2019-01-31 13:26:11 +00:00
|
|
|
}
|
|
|
|
}
|