-
Notifications
You must be signed in to change notification settings - Fork 186
Closed
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behaviordplyr verbs 🤖Translation of dplyr verbs to SQLTranslation of dplyr verbs to SQL
Description
I believe the implementation of group_vars.tbl_lazy() needs a tweak.
library(tidyverse)
library(dbplyr)
#>
#> Attaching package: 'dbplyr'
#> The following objects are masked from 'package:dplyr':
#>
#> ident, sql
memdb_frame(a = 1:3, b = 1:3) %>%
count(a, b) %>%
group_vars()
#> [1] "a"
tibble(a = 1:3, b = 1:3) %>%
count(a, b) %>%
group_vars()
#> character(0)Created on 2019-08-13 by the reprex package (v0.3.0)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behaviordplyr verbs 🤖Translation of dplyr verbs to SQLTranslation of dplyr verbs to SQL