alamb opened a new issue, #11659:
URL: https://github.com/apache/datafusion/issues/11659

   ### Describe the bug
   
   The `force_hash_collisions` feature flag is intended to ensure DataFusion 
works correctly even in the very unlikely event that hash values collide.
   
   The new version of clippy in Rust 1.80 found we had not been running some 
tests with this flag  https://github.com/apache/datafusion/issues/11651
   
   And it turns out when we started running the tests with the hash collision 
they failed
   
   we commented them out in https://github.com/apache/datafusion/pull/11654 but 
we should really figure out why they failed
   
   
   
   ### To Reproduce
   
   Uncomment the `equijoin_full_and_condition_from_both` in 
`datafusion/sqllogictest/test_files/sort_merge_join.slt` and run it like
   
   ```shell
   cargo test --test sqllogictests --features=force_hash_collisions -- 
sort_merge_join
   ```
   
   
   ### Expected behavior
   
   Test should pass
   
   ```
   cargo test --test sqllogictests --features=force_hash_collisions
   ```
   and
   ```
   cargo test --test sqllogictests --features=force_hash_collisions -- 
sort_merge_join
   ```
   
   ### Additional context
   
   _No response_


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to