Illogical use "full_table_id" #115
Labels
api: bigquery
Issues related to the googleapis/python-bigquery API.
type: question
Request for information or clarification. Not an issue.
Hi there! Up front, I am not that experienced with either Python nor the BigQuery API, so this may be intended. But if it is, I do not understand why 😅
I have the following simple script that looks for a given data set, and then loops through tables inside that data set and fires queries. Right now it does a simple select, but I intend to delete some old partitions that are no longer needed.
I am stuck at the part of
str(bq.get_table(table).full_table_id)
I expected a table reference such asbigquery-public-data.austin_311.311_request
but it returns something likebigquery-public-data:austin_311.311_request
(note the : )And as expected my script fails with
google.api_core.exceptions.BadRequest: 400 Syntax error: Unexpected ":" at [1:27]
The text was updated successfully, but these errors were encountered: