Skip to content

Commit

Permalink
remove comments as suggested by starburstdata#141 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
bachng2017 committed Oct 3, 2022
1 parent e4195d6 commit 8b5336b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions dbt/adapters/trino/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,4 @@ class TrinoRelation(BaseRelation):

# Overridden as Trino converts relation identifiers to lowercase
def _is_exactish_match(self, field: ComponentName, value: str) -> bool:
# if self.dbt_created and self.quote_policy.get_part(field) is False:
# return self.path.get_lowered_part(field) == value.lower()
# else:
# return self.path.get_part(field) == value
return self.path.get_lowered_part(field) == value.lower()

0 comments on commit 8b5336b

Please sign in to comment.