Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dataders committed Nov 3, 2021
1 parent 5e632d1 commit eb03a3a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dbt/adapters/firebolt/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ def matches(
if not self._is_exactish_match(k, v):
exact_match = False

if self.path.get_lowered_part(k) != v.lower():
if (
self.path.get_lowered_part(k).strip(self.quote_character) !=
v.lower().strip(self.quote_character)
):
approximate_match = False

if approximate_match and not exact_match:
Expand Down

0 comments on commit eb03a3a

Please sign in to comment.