You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run a BigQuery query and return the results as a Parsons table.
@@ -277,6 +278,8 @@ def query(
277
278
A valid BigTable statement
278
279
parameters: dict
279
280
A dictionary of query parameters for BigQuery.
281
+
job_config: QueryJobConfig or None
282
+
An optional QueryJobConfig object for custom behavior. See https://cloud.google.com/python/docs/reference/bigquery/latest#google.cloud.bigquery.job.QueryJobConfig
Execute a query against the BigQuery database, with an existing connection.
@@ -305,6 +318,8 @@ def query_with_connection(
305
318
A list of python variables to be converted into SQL values in your query
306
319
commit: boolean
307
320
Must be true. BigQuery
321
+
job_config: QueryJobConfig or None
322
+
An optional QueryJobConfig object for custom behavior. See https://cloud.google.com/python/docs/reference/bigquery/latest#google.cloud.bigquery.job.QueryJobConfig
0 commit comments