[DMDB] Prepare parts; bitmaps, bloom filters, zone maps complete

This commit is contained in:
2026-07-08 16:55:41 +02:00
parent ebc5d0bb5e
commit 954af69704
11 changed files with 82 additions and 2 deletions
@@ -0,0 +1,6 @@
There are some systems that do not use indexes, or very sparingly.
Instead, they keep metadata about the blocks and store them in memory and use it to check if the data in the block is needed.
This is common in column-store engines such as DuckDB and Snowflake.
This metadata can be as simple as min/max for each column,
or complete stats, bitmaps, precomputed aggregates, or even bloom filters.