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
The dbFetch method (R/dbi-results.R) cannot be called with the quiet option. dbFetch is called with a res object, not a conn object and so does not have access to conn@quiet. It also does not (currently) take a quiet parameter. So, there is no way to make the internal call to bq_table_download (R/bq-download.R) employing either of the above options, and bq_table_download has the default quiet parameter set to NA.
Discovered this myself recently. It really should be a trivial fix. I think you just need to include quiet = res@quiet in the bq_table_download call when defining the dbFetch method at line 115 in dbi-result.R
A small issue - important for deploying though.
The
dbFetch
method (R/dbi-results.R) cannot be called with the quiet option.dbFetch
is called with ares
object, not aconn
object and so does not have access toconn@quiet
. It also does not (currently) take aquiet
parameter. So, there is no way to make the internal call tobq_table_download
(R/bq-download.R) employing either of the above options, andbq_table_download
has the defaultquiet
parameter set toNA
.Gives this output:
The text was updated successfully, but these errors were encountered: