Skip to content

Commit

Permalink
Fixing top query trimming in snowflake
Browse files Browse the repository at this point in the history
  • Loading branch information
treff7es committed Nov 15, 2022
1 parent fc26cf3 commit b9f90e1
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 b9f90e1

Please sign in to comment.