shner-elmo commented on issue #37953:
URL: https://github.com/apache/arrow/issues/37953#issuecomment-1740751947
I guess this also explain why when I was filtering by the partitioned
columns it was always returning nothing:
```py
it = dataset.scanner(filter=ds.field('month') == '1').to_batches()
print(next(it, None))
it = dataset.scanner(filter=ds.field('month') == 'month=10').to_batches()
print(len(next(it)))
```
```
None
1458
```
--
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]