Skip to content
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

Merged
merged 10 commits into from
Sep 26, 2021

Conversation

francis-du
Copy link
Contributor

@francis-du francis-du commented Sep 26, 2021

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?

@github-actions github-actions bot added the datafusion Changes in the datafusion crate label Sep 26, 2021
let sql = "SELECT population.city, population.population, area.area \
FROM population \
JOIN (SELECT * FROM area) \
ON population.city = area.city \
Copy link
Contributor

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?

Copy link
Contributor Author

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.

@houqp houqp merged commit 91a450f into apache:master Sep 26, 2021
@houqp
Copy link
Member

houqp commented Sep 26, 2021

Thanks @francis-du !

@houqp houqp added the enhancement New feature or request label Sep 26, 2021
Copy link
Contributor

@alamb alamb left a 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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
datafusion Changes in the datafusion crate enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Datafusion] - Support joins on Float32/Float64 columns
4 participants