tmontes commented on issue #42160:
URL: https://github.com/apache/arrow/issues/42160#issuecomment-2402154573
Hey @smorken,
I just bumped into a very similar case you're describing here. IIUC, your
code will work if you add the `ignore_prefixes=['.']` argument to your dataset
creation.
Instead of...
```
dataset = pq.ParquetDataset("dataset_v2/")
```
...use:
```
dataset = pq.ParquetDataset('dataset/', ignore_prefixes=['.'])
```
Does it work for you?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]