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
Since I upgraded to v1.2.0 I am beginning to see lots of error messages like this
Error in .json.tabular.to.data.frame(response.content[["columns"]], c("character", : Unexpected data class: NULL
These are results from running dbGetQuery. Oddly, the same queries were working in the previous version I had (1.0.0). Even more oddly, I had to find a hacky work around involving a timeout! So, instead of running dbGetQuery(conn, statement), I am doing the following:
@aimran thank you for the excellent bug report and apologies for the errors. It stems from a wrong assumption on my part about possible presto responses. Could you try with:
@onurfiliz Thanks for your kind words — y'all make our work very easy!
This is to confirm that the robustness_fixes branch indeed fixes the issue on my end. I put the (failing) queries through its paces and it is returning without errors.
Since I upgraded to v1.2.0 I am beginning to see lots of error messages like this
Error in .json.tabular.to.data.frame(response.content[["columns"]], c("character", : Unexpected data class: NULL
These are results from running
dbGetQuery
. Oddly, the same queries were working in the previous version I had (1.0.0). Even more oddly, I had to find a hacky work around involving a timeout! So, instead of runningdbGetQuery(conn, statement)
, I am doing the following:Any ideas on how I could go about debugging it. FYI, I also tried installing RPresto directly from the repo without any luck.
The text was updated successfully, but these errors were encountered: