-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hash_join panics when join keys have different data types #2877
Labels
bug
Something isn't working
Comments
I think the issue is that we don't have type coercion for join keys so joining a number column to a string can cause this. in |
Option::unwrap()
on a None
value)
@andygrove I'd like to investigate this as part of #2910 |
Rev engineered data from sqlfuzz, quick test to reproduce the behavior
Right, the problem is non compat downcast |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
There are several places where hash_join can panic in version 9.0.0 when I run SQL queries.
To Reproduce
I am experimenting with SQL query fuzzing. Here is one query that failed:
Data files are here - https://github.com/andygrove/sqlfuzz/tree/main/testdata
Expected behavior
Should not panic
Additional context
The text was updated successfully, but these errors were encountered: