Skip to content

Commit 9c0d863

Browse files
committed
support data with no rank
1 parent 40d6245 commit 9c0d863

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

definitions/output/reports/tech_crux.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ crux AS (
162162
WHEN rank <= 100000 THEN ['Top 100k', 'Top 1M', 'Top 10M', 'ALL']
163163
WHEN rank <= 1000000 THEN ['Top 1M', 'Top 10M', 'ALL']
164164
WHEN rank <= 10000000 THEN ['Top 10M', 'ALL']
165-
WHEN rank <= 100000000 THEN ['ALL']
165+
ELSE ['ALL']
166166
END AS eligible_ranks,
167167
CONCAT(origin, '/') AS root_page,
168168
IF(device = 'desktop', 'desktop', 'mobile') AS client,

0 commit comments

Comments
 (0)