-
To do quick filtering based on dictionary page, I want to just read dictionary page and check it against set of values, how can I do this ? |
Beta Was this translation helpful? Give feedback.
Answered by
adamreeve
Mar 22, 2023
Replies: 1 comment 1 reply
-
Hi Chirag This isn't currently possible with ParquetSharp, and I don't believe that the Arrow C++ Parquet library exposes the dictionary data either. You should be able to access the min and max values of a column within each row group via the column statistics though, would that work for you? |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
erchirag
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Chirag
This isn't currently possible with ParquetSharp, and I don't believe that the Arrow C++ Parquet library exposes the dictionary data either. You should be able to access the min and max values of a column within each row group via the column statistics though, would that work for you?