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 2021/12/12 22:06:38 UTC

[GitHub] [arrow-datafusion] alamb commented on issue #1434: Query with 100 OR conditions overflows stack

alamb commented on issue #1434:
URL: https://github.com/apache/arrow-datafusion/issues/1434#issuecomment-991979118


   @mcassels  One possible workaround for an issue like this would be to use an inlist (assuming your predicate is searching for one of a list of constants)
   
   So like SQL
   ```
   SELECT ... WHERE c1 IN (1, 2, 3, 4, 5, 6, ...)
   ```
   
   which would end up as an `Expr::InList`


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