alamb commented on issue #1434: URL: https://github.com/apache/arrow-datafusion/issues/1434#issuecomment-992758421
Interestingly, when I ran the reproducer on my machine (not as part of a `cargo test` but in a standalone program like `via cargo run`) it actually was able to handle 100 conditions. ``` Starting tests attempted a query with 50 conditions... query succeeded with 50 conditions attempted a query with 100 conditions... query succeeded with 100 conditions ``` However, with 1000 it does die: ``` attempted a query with 1000 conditions... thread 'main' has overflowed its stack fatal runtime error: stack overflow ``` When I ran with `cargo run --release` the test passes fine ``` Starting tests attempted a query with 50 conditions... query succeeded with 50 conditions attempted a query with 1000 conditions... query succeeded with 1000 conditions ``` Which is a similar symptom as fixed in https://github.com/apache/arrow-datafusion/pull/1047 -- 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]
