-
Notifications
You must be signed in to change notification settings - Fork 368
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
improve error messages in joins #3349
Conversation
src/join/composer.jl
Outdated
"Such value was found in column :$col_name in " * | ||
(df_i == 1 ? "left" : "right") * " data frame.")) |
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.
I'd mention this before CategoricalArrays so that it's clear what "such value" refers to.
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.
right; fixed
docs/src/man/joins.md
Outdated
│ Int64? Int64 Int64 | ||
─────┼────────────────────── | ||
1 │ 1 1 1 | ||
``` | ||
|
||
## Support for `-0.0` and `NaN` in joins |
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.
We mention this already under the "Key value comparisons and floating point values" section. How about putting the example there?
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.
ah - right. I was looking for it, but missed. Moved.
Thank you! |
Fixes #3345