Skip to content

Commit

Permalink
Fixed Bad Queries
Browse files Browse the repository at this point in the history
  • Loading branch information
FastLee committed Mar 2, 2024
1 parent f86c619 commit 7418bbf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- widget title=Incompatible Submit Runs Failures, row=6, col=5, size_x=3, size_y=8
SELECT
EXPLODE(FROM_JSON(failures, 'array<string>')) AS failure,
COUNT(DISTINCT hashed_id) AS submit_runs
COLLECT_LIST(DISTINCT hashed_id) AS run_ids
COUNT(DISTINCT hashed_id) AS submit_runs,
COLLECT_LIST(DISTINCT run_ids) AS run_ids
FROM $inventory.submit_runs
group by 1

0 comments on commit 7418bbf

Please sign in to comment.