Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dbt/adapters/impala/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down