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
We use dbplyr through sparklyr.
When we moved to dbplyr version 2.2.0 we got a failure during execution of a code which previously worked fine, while getting the following error message:
"Error in dbi_ensure_no_backtick(x) : Can't escape back tick from string"
It happens when we sprarklyr::collect a spark data frame after some dplyr::anti_join operation.
We workaround it by applying sprarklyr::collect to each of the two data frames and then do the dplyr::anti_join on the resulted R data frames, instead of anti_join the original spark data frames.
The text was updated successfully, but these errors were encountered:
We use dbplyr through sparklyr.
When we moved to dbplyr version 2.2.0 we got a failure during execution of a code which previously worked fine, while getting the following error message:
"Error in dbi_ensure_no_backtick(x) : Can't escape back tick from string"
It happens when we sprarklyr::collect a spark data frame after some dplyr::anti_join operation.
We workaround it by applying sprarklyr::collect to each of the two data frames and then do the dplyr::anti_join on the resulted R data frames, instead of anti_join the original spark data frames.
The text was updated successfully, but these errors were encountered: