Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dbt-labs/dbt-bigquery
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 33a1bdf2eecbd4cd08b2d566928a4ba3152eb95f
Choose a base ref
..
head repository: dbt-labs/dbt-bigquery
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d87909e8504147d5b144547d66e330d0394bf801
Choose a head ref
Showing with 1 addition and 3 deletions.
  1. +1 −3 dbt/adapters/bigquery/connections.py
4 changes: 1 addition & 3 deletions dbt/adapters/bigquery/connections.py
Original file line number Diff line number Diff line change
@@ -578,9 +578,7 @@ def _query_and_results(
and query_job.job_id is not None
and query_job.project is not None
):
logger.info(
self._bq_job_link(query_job.location, query_job.project, query_job.job_id)
)
logger.info(self._bq_job_link(query_job.location, query_job.project, query_job.job_id))

timeout = self._retry.create_job_execution_timeout()
try: