googleapis / googleapis/google-cloud-python

read_gbq: Runtime error when given table name for a view

オープン
#14,471 コメント 0 件 リアクション 0 件 担当者 1 名 @tswast が担当を希望しています GitHub で見る
api: bigquery type: feature request
主要言語
Python
スター
5.4k
フォーク
1.8k
平均マージ
3日 4時間
マージ済み PR(30日)
122

説明

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

```python
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 : Cannot list a table of type VIEW.
```

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。