-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
fix: fix joins on Float32/Float64 columns bug #1054
Conversation
datafusion/tests/sql.rs
Outdated
let sql = "SELECT population.city, population.population, area.area \ | ||
FROM population \ | ||
JOIN (SELECT * FROM area) \ | ||
ON population.city = area.city \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For testing the feature, don't we want to join on the float columns?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your reminder, I am going to modify it.
Thanks @francis-du ! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great -- thank you @francis-du
Which issue does this PR close?
Close #1053
Rationale for this change
What changes are included in this PR?
Are there any user-facing changes?