v.19.15New Feature
Add Bitmapmin and Bitmapmax Functions
AddbitmapMinandbitmapMaxfunctions. #6970 (Zhichang Yu)
Why it matters
These functions enable users to efficiently compute the minimum and maximum values stored within bitmap aggregates, addressing the need for quick retrieval of range boundaries from bitmap-based data structures.How to use it
Use thebitmapMin and bitmapMax functions in your SELECT queries to obtain the minimum or maximum value from bitmap aggregate columns, e.g., SELECT bitmapMin(bitmap_column), bitmapMax(bitmap_column) FROM table.