mohdbilal87 commented on issue #39688:
URL: https://github.com/apache/arrow/issues/39688#issuecomment-1979421677

   Confirming the above behavior. For me it was
   
   ```
   ds <- arrow::open_dataset(
     sources = "source_folder", 
     format = "parquet", 
     partitioning = c("month", "day")
   )
   
   dplyr::collect(
           x = dplyr::filter(
             .data = ds, month == mon, day == day
           )
         )
   ```
   This kept segfaulting. I suspect, as noted above, this is due to `day == 
day`. `day == d` works as expected.


-- 
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]

Reply via email to