We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the below redshift example, I get an error that the function is not supported for PostgreSQL, but I suppose it should intead say redshift?
library(dplyr, warn.conflicts = FALSE) library(dbplyr, warn.conflicts = FALSE) lazy_frame(x = c(1,2), con = simulate_redshift()) %>% mutate( q25 = quantile(x, 0.25, na.rm = TRUE), median = median(x, na.rm = TRUE), q75 = quantile(x, 0.75, na.rm = TRUE)) |> show_query() #> Error in `quantile()`: #> ! Translation of `quantile()` in `mutate()` is not supported for #> PostgreSQL. #> ℹ Use a combination of `summarise()` and `left_join()` instead: #> `df %>% left_join(summarise(<col> = quantile(x, 0.25, na.rm = TRUE)))`.
Created on 2025-01-06 with reprex v2.1.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the below redshift example, I get an error that the function is not supported for PostgreSQL, but I suppose it should intead say redshift?
Created on 2025-01-06 with reprex v2.1.0
The text was updated successfully, but these errors were encountered: