Expose the QueryJob on the DBAPI cursor #1515
Labels
api: bigquery
Issues related to the googleapis/python-bigquery API.
priority: p3
Desirable enhancement or fix. May not be included in next release.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
Is your feature request related to a problem? Please describe.
I would like to store the
job_id
that references the job created aftercursor.execute
is called. Currently I do this:Describe the solution you'd like
I would prefer to do something like this:
Describe alternatives you've considered
It is possible to specify the
job_id
when callingcursor.execute
, however:cursor.execute
in my code (see additional context below)Additional context
I interact with this library from the BigQuery SQLAlchemy dialect, so I never call DBAPI
execute
directly:The text was updated successfully, but these errors were encountered: