From 75142ac7f18ae94b6171461ec379b97ebf79a0e4 Mon Sep 17 00:00:00 2001 From: Yasuhisa Yoshida Date: Tue, 19 Nov 2024 03:46:14 +0900 Subject: [PATCH] Remove unused stub function (#1393) Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com> --- dbt/adapters/bigquery/impl.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dbt/adapters/bigquery/impl.py b/dbt/adapters/bigquery/impl.py index cf5800fd3..f6470e7f7 100644 --- a/dbt/adapters/bigquery/impl.py +++ b/dbt/adapters/bigquery/impl.py @@ -95,12 +95,6 @@ def render(self): return f"{self.project}.{self.dataset}" -def _stub_relation(*args, **kwargs): - return BigQueryRelation.create( - database="", schema="", identifier="", quote_policy={}, type=BigQueryRelation.Table - ) - - @dataclass class BigqueryConfig(AdapterConfig): cluster_by: Optional[Union[List[str], str]] = None