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
When I try to use read_gbq where I pass in the name of a view, I get a runtime error caused by an unhandled 400 error from the API.
It looks like read_gbq tries to use the tabledata.list method which is not supported by the BigQuery API for views. I would expect read_gbq to be able to handle this query and use an appropriate API method.
As a work around, I am able to run the query SELECT * FROM my_dataset.my_table instead.
When I try to use
read_gbq
where I pass in the name of a view, I get a runtime error caused by an unhandled 400 error from the API.It looks like
read_gbq
tries to use thetabledata.list
method which is not supported by the BigQuery API for views. I would expectread_gbq
to be able to handle this query and use an appropriate API method.As a work around, I am able to run the query
SELECT * FROM my_dataset.my_table
instead.Environment details
pandas-gbq
version: 0.28.0google-cloud-bigquery
version: 3.30.0Code example
where
my_table
is a VIEWError
The text was updated successfully, but these errors were encountered: