From e49cfc0494b249054c7f30a0c481762c5271ea05 Mon Sep 17 00:00:00 2001 From: matt-winkler <75497565+matt-winkler@users.noreply.github.com> Date: Mon, 23 Oct 2023 10:27:58 -0600 Subject: [PATCH] Update dbt/adapters/bigquery/connections.py Co-authored-by: colin-rogers-dbt <111200756+colin-rogers-dbt@users.noreply.github.com> --- dbt/adapters/bigquery/connections.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dbt/adapters/bigquery/connections.py b/dbt/adapters/bigquery/connections.py index 44662fdc6..de84e4bf8 100644 --- a/dbt/adapters/bigquery/connections.py +++ b/dbt/adapters/bigquery/connections.py @@ -64,6 +64,7 @@ # Override broken json deserializer for dbt show --inline +# can remove once this is fixed: https://github.com/googleapis/python-bigquery/issues/1500 def _json_from_json(value, _): """NOOP string -> string coercion""" return json.loads(value)