Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
fix(snowflake): Fixing top query trimming in snowflake (datahub-proje…
Browse files Browse the repository at this point in the history
  • Loading branch information
treff7es authored and cccs-Dustin committed Feb 1, 2023
1 parent b6347ee commit 1b0d483
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def _map_top_sql_queries(self, top_sql_queries: Dict) -> List[str]:
[
trim_query(format_sql_query(query), budget_per_query)
if self.config.format_sql_queries
else query
else trim_query(query, budget_per_query)
for query in top_sql_queries
]
)
Expand Down

0 comments on commit 1b0d483

Please sign in to comment.