Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign uptbl %>% compute(name="test.table") tries to return a tbl-pointer for, e.g., "default.test.table" #74
Comments
|
Sorry about this, I think this is due to the
Which means it will be looking for a table called "test.table". have you tried changing your connection to:
|
|
Managed to create a solution that doesn't mean a rebuild of the
Note: This feature is different than alot of other DBI packages that integrate with dplyr. They will return your above error. |
|
Alright, the fix in PR #72 seems to do it. I agree this is a bit of a deviation from the 'standard', but don't see an immediate issue with it. One can still use %>% compute(name = in_schema("schema", "table")) as usual and things work ok. |
|
Closing issue, if you find anything else please raise a ticket and i will try to get it in before the next cran release |
|
These change have been pushed to cran |
Issue Description
Doing something like the following:
will result in an error, such as:
The command does produce the table 'table' in database 'test', but compute tries to a table in the 'default' database (or which every you have set when connecting to Athena) named 'test.table'