-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
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
compute() no longer works as expected from dbplyr 2.3.3 #1372
Comments
Minimal example: iris_spark <- copy_to(sc, iris, "iris", overwrite = T)
tmp1 <- iris_spark %>% tally() %>% collect # works
tmp2 <- iris_spark %>% tally() %>% compute("tmp2") # fails
|
I think this should be fixed by #1379. |
It was — it's mentioned as "Preliminary databricks Sqark SQL backend". |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue originally reporting at: sparklyr/sparklyr#3375 and redirected to dbplyr. Prior to 2.3.3 compute() worked in the sparklyr code below:
Full error log and session details are available in the original issue.
@edgararuiz suggested we need
in_schema()
in thetbl()
statement for the table name to parse correctly, but this was not necessary prior to 2.3.3. The shorthand intbl(cn, "mydb.mytable")
is convenient and widely used. Could dbplyr please support it going forward?@Zhuk66
The text was updated successfully, but these errors were encountered: