Implementing a custom parquet index #14858
-
Hi, I am trying to implement a custom index, using a I have implemented the Beyond, this I am also getting an issue with running a count on the dataset using my custom
without any differences being printed, any idea what may be causing this? Something specific that I may be missing from my Thnx |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
To resolve that error, you can try setting the option If you want the hive partitioning feature of |
Beta Was this translation helpful? Give feedback.
To resolve that error, you can try setting the option
datafusion.execution.skip_physical_aggregate_schema_check
totrue
. ref: https://datafusion.apache.org/user-guide/configs.htmlIf you want the hive partitioning feature of
ListingTable
you either need to use it directly or implement it yourself. I had to do a similar thing for my own TableProvider and unfortunately ended up needing to copy a lot of code fromListingTable
since the internal methods weren't public. I'm working on a change that should make this more generic and available for downstream implementations.