Skip to content

Commit

Permalink
remove dashes from ´__dbt_tmp´ suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandro Hou committed Nov 8, 2024
1 parent 3e6d043 commit a4bc681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt-athena/src/dbt/adapters/athena/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ def clean_up_table(self, relation: AthenaRelation) -> None:

@available
def generate_unique_temporary_table_suffix(self, suffix_initial: str = "__dbt_tmp") -> str:
return f"{suffix_initial}_{str(uuid4())}"
return f"{suffix_initial}_{str(uuid4()).replace('-', '')}"

def quote(self, identifier: str) -> str:
return f"{self.quote_character}{identifier}{self.quote_character}"
Expand Down

0 comments on commit a4bc681

Please sign in to comment.