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 1fe057d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dbt/adapters/firebolt/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ def matches(
if not self._is_exactish_match(k, v):
exact_match = False

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

if approximate_match and not exact_match:
target = self.create(
Expand Down

0 comments on commit 1fe057d

Please sign in to comment.