We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f85e5 commit b8274f8Copy full SHA for b8274f8
sql/2024/performance/lcp_async_fetchpriority.sql
@@ -82,7 +82,9 @@ SELECT
82
COUNTIF(decoding = 'sync') AS sync_decoding,
83
COUNTIF(decoding = 'auto') AS auto_decoding,
84
COUNTIF(fetchPriority = 'low') AS priority_low,
85
- COUNTIF(fetchPriority = 'high') AS priority_high
+ COUNTIF(fetchPriority = 'low') / COUNT(DISTINCT url) AS pct_priority_low,
86
+ COUNTIF(fetchPriority = 'high') AS priority_high,
87
+ COUNTIF(fetchPriority = 'high') / COUNT(DISTINCT url) AS pct_priority_high
88
FROM
89
lcp_stats
90
JOIN (
0 commit comments