ENH: Read BigQuery query table without a query #266
Labels
api: bigquery
Issues related to the googleapis/python-bigquery-pandas API.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
It can cost a lot to run a
SELECT * FROM my_table
query, and yet from an API perspective, this query is completely unnecessary, as one can list the rows from the table directly for free withtabledata.list
. I proposewhich will download a table directly (using
bigquery_client.list_rows().to_dataframe()
). Since all queries must contain some kind of whitespace and table IDs cannot contain any whitespace, we can use that to disambiguate query versus table ID.The text was updated successfully, but these errors were encountered: