Skip to content
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

read_gbq: Runtime error when given table name for a view #896

Open
jayqi opened this issue Mar 13, 2025 · 1 comment
Open

read_gbq: Runtime error when given table name for a view #896

jayqi opened this issue Mar 13, 2025 · 1 comment
Assignees
Labels
api: bigquery Issues related to the googleapis/python-bigquery-pandas API.

Comments

@jayqi
Copy link

jayqi commented Mar 13, 2025

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.

Environment details

  • OS type and version: macOS 15.3.1 on M4 Pro
  • Python version: 3.13.2
  • pandas-gbq version: 0.28.0
  • google-cloud-bigquery version: 3.30.0

Code example

import pandas_gbq as pd_gbq 

pd_gbq.read_gbq("my_dataset.my_table")

where my_table is a VIEW

Error

GenericGBQException: Reason: 400 GET <API URL redacted>: Cannot list a table of type VIEW.
@product-auto-label product-auto-label bot added the api: bigquery Issues related to the googleapis/python-bigquery-pandas API. label Mar 13, 2025
@Hassan222-ux

This comment was marked as spam.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: bigquery Issues related to the googleapis/python-bigquery-pandas API.
Projects
None yet
Development

No branches or pull requests

3 participants