Skip to content

Commit ec7a699

Browse files
authored
Add rank filter to custom property depth query
1 parent 29afbf8 commit ec7a699

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

sql/2025/css/custom_property_depth.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ WITH totals AS (
8787
`httparchive.crawl.pages`
8888
WHERE
8989
date = '2025-07-01' AND
90+
rank <= 1000000 AND
9091
is_root_page
9192
GROUP BY
9293
client
@@ -112,6 +113,7 @@ FROM (
112113
UNNEST(getCustomPropertyLengths(custom_metrics.css_variables)) AS custom_properties
113114
WHERE
114115
date = '2025-07-01' AND
116+
rank <= 1000000 AND
115117
is_root_page
116118
)
117119
JOIN

0 commit comments

Comments
 (0)