rooneyp commented on issue #9160:
URL: https://github.com/apache/arrow/issues/9160#issuecomment-1179079693
FWIW I got it working using 'not in' operator
`filters=[('deletionTime', 'not in', [None])]`
this was done via pandas, but I think it just passes the filters down to
pyarrow
`pd.read_parquet(pq_path, engine='pyarrow',
columns=cols,
storage_options=None,
use_nullable_dtypes=True, filters=filters)
`
--
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]