You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/07/08 14:54:08 UTC

[GitHub] [arrow] rooneyp commented on issue #9160: How to filter parquet column with None using Python?

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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org