We need a way to determine if the bloom filter is applied or not on a parquet file when inspecting the parquet metadata with ClickHouse via SELECT * FROM file('output.parquet', ParquetMetadata). Currently there is no mention of bloom_filter_offset when reading from a parquet with ClickHouse.
Use case
A way to check if the bloom filter is applied or not on the parquet file and have it as one of the checks for QA directly with ClickHouse without relying on 3rd party tools like parquet-tools.
Describe the new feature
We need a way to determine if the bloom filter is applied or not on a parquet file when inspecting the parquet metadata with ClickHouse via
SELECT * FROM file('output.parquet', ParquetMetadata)
. Currently there is no mention ofbloom_filter_offset
when reading from a parquet with ClickHouse.Use case
A way to check if the bloom filter is applied or not on the parquet file and have it as one of the checks for QA directly with ClickHouse without relying on 3rd party tools like
parquet-tools
.