How to get period separated table id from Table Object #354
Labels
api: bigquery
Issues related to the googleapis/python-bigquery API.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
I am attempting to build a query using the table id in a
bigquery.Table
object:Unfortunately, this doesn't work. The output of
table.full_table_id
is:myProject:myDataSet.myTable
but queries need to be formatted with period separated values, aka:myProject.myDataSet.myTable
.Question: How should I be constructing queries from a
bigquery.Table
object?Right now the work around I am using is this:
But this feels icky.
To search find this issue, this is the exception I was getting:
I can see from issue #115 that this is the intended behaviour of
full_table_id
, but I am still curious if there is a cleaner solution to what I am doing.The text was updated successfully, but these errors were encountered: