update group_by_prepare call for .dots deprecation

This commit is contained in:
Alex Kyllo 2022-12-20 07:50:21 -08:00
Родитель a7d462f2e3
Коммит 85c5828af9
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -84,8 +84,8 @@ group_by.tbl_kusto_abstract <- function(.data, ..., add = FALSE)
{
return(.data)
}
groups <- group_by_prepare(.data, .dots = dots, add = add)
# Updated for dplyr deprecation of .dots and add params
groups <- group_by_prepare(.data, !!!dots, .add = add)
names <- vapply(groups$groups, as_string, character(1))
add_op_single("group_by",
groups$data,