Skip to content

Conversation

krlmlr
Copy link
Member

@krlmlr krlmlr commented Jun 30, 2024

Recent duckplyr checks that all functions used in a dplyr verb are what they pretend they are: tidyverse/duckplyr#179. This works for most cases, except for the n() created by tally_n() . This PR fixes this.

Once we agree on the implementation, I can vendor in a copy of this function into duckplyr.

@krlmlr krlmlr requested a review from DavisVaughan June 30, 2024 16:52
} else {
expr(sum(!!wt, na.rm = TRUE))
new_quosure(expr(sum(!!wt, na.rm = TRUE)), quo_get_env(wt))
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This probably should be:

Suggested change
new_quosure(expr(sum(!!wt, na.rm = TRUE)), quo_get_env(wt))
new_quosure(expr(sum(!!wt, na.rm = TRUE)), baseenv())

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant