-
Notifications
You must be signed in to change notification settings - Fork 185
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
Error in strsplit() on "head-only" queries #509
Comments
Any updates here? This also affects functions like |
I still have the same error when I try to print head of the db table or glimpse(). Other codes work fine, tho.
Version info |
…512) * Fix #509 * Use op_table() Co-authored-by: Maximilian Girlich <[email protected]> * Fix indentation * Add bullet describing op_table.lazy_select_query()'s new return * Add test for 'can correclty print a lazy query' * Typo correclty -> correctly * Revert whitespace trimming * Expand NEWS bullet a bit --------- Co-authored-by: Maximilian Girlich <[email protected]> Co-authored-by: Jenny Bryan <[email protected]>
When running a "head-only" query, the following error is returned
Error in strsplit(name, ".", fixed = TRUE) : non-character argument
Drilling down, the error occurs in dbplyr.R line 113:
bigrquery/R/dplyr.R
Line 113 in 73781ba
op_table() eventually arrives at op_table.lazy_select_query(), which returns a list instead of a character string.
bigrquery/R/dplyr.R
Line 192 in 73781ba
This error does not occur when explicitly calling collect()
The text was updated successfully, but these errors were encountered: