Skip to content

Commit

Permalink
Add quotes to table string
Browse files Browse the repository at this point in the history
Signed-off-by: TomSteenbergen <tomsteenbergen1995@gmail.com>
  • Loading branch information
TomSteenbergen committed Apr 23, 2024
1 parent 21dd7f8 commit 51f07ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/offline_stores/snowflake_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def get_table_query_string(self) -> str:
if self.database and self.schema and self.table:
return f'"{self.database}"."{self.schema}"."{self.table}"'
elif self.schema and self.table:
return f'"{self.schema}.{self.table}"'
return f'"{self.schema}"."{self.table}"'
elif self.table:
return f'"{self.table}"'
else:
Expand Down

0 comments on commit 51f07ad

Please sign in to comment.