From ed3daab588c4c03a7a05708166882544bf0b66a9 Mon Sep 17 00:00:00 2001 From: Keith Sirmons Date: Wed, 9 Apr 2025 17:33:24 -0500 Subject: [PATCH] updated quote def to quote column_name and schema.table identifiers --- dbt/adapters/impala/impl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbt/adapters/impala/impl.py b/dbt/adapters/impala/impl.py index f4c9f4f..320f85e 100644 --- a/dbt/adapters/impala/impl.py +++ b/dbt/adapters/impala/impl.py @@ -73,7 +73,7 @@ def convert_text_type(cls, agate_table: agate.Table, col_idx: int) -> str: return "string" def quote(self, identifier): - return identifier # no quote + return ".".join(f"`{part}`" for part in identifier.split('.')) @classmethod def convert_number_type(cls, agate_table: agate.Table, col_idx: int) -> str: