Hi there! Can i somehow change result type of bitmapBuild([1,2,3,4]) not to AggregateFunction(groupBitmap, UInt8) which i assume selects type by selecting max integer in set, but to AggregateFunction(groupBitmap, UInt32) without using hacks like bitmapBuild([1,2,3,4, 4294967295])
CC @yuzhichang
@mrAndersen You can cast array to UInt32 explicitly, for example bitmapBuild(cast([1,2,3,4] as Array(UInt32))).
Thanks!
Most helpful comment
@mrAndersen You can cast array to UInt32 explicitly, for example
bitmapBuild(cast([1,2,3,4] as Array(UInt32))).