You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are scenarios where tbl(src, "table_name") %>% select(...) doesn't work because enumerating the columns after tbl() fails. This can happen if the table contains columns not supported by the DBI backend. The workaround
tbl(src, sql("SELECT col1, col2, ... FROM table_name"))
is clumsy.
Perhaps we can add a select argument to tbl.src_dbi() with tidyselect semantics?
The text was updated successfully, but these errors were encountered:
There are scenarios where
tbl(src, "table_name") %>% select(...)
doesn't work because enumerating the columns aftertbl()
fails. This can happen if the table contains columns not supported by the DBI backend. The workaroundis clumsy.
Perhaps we can add a
select
argument totbl.src_dbi()
with tidyselect semantics?The text was updated successfully, but these errors were encountered: