-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Joins lose custom attributes #3468
Comments
I think this probably can be one issue with #3259, but I'll let a second set of eyes come across it to decide first. Thanks for filing. |
Thanks. Yes, currently you can't rely on attributes being preserved. We're working on it, but the attributes of an object will be preserved only if it is a subclass of Currently, the safest way is to implement a custom S3 class and methods for that class. |
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/ |
Much like #3259, the join functions also lose custom attributes. We use attributes to save the query to the object it produced:
So, for example with
dplyr
data:Is this intended? Especially for
left_join
, we would like to keep the attributes ofx
.The text was updated successfully, but these errors were encountered: