Skip to content

Commit c4aa9c5

Browse files
formatting null adoption (#44)
1 parent 93ea0f6 commit c4aa9c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

definitions/output/reports/cwv_tech_adoption.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ SELECT
2020
rank,
2121
geo,
2222
STRUCT(
23-
COALESCE(MAX(IF(client = 'desktop', origins, NULL))) AS desktop,
24-
COALESCE(MAX(IF(client = 'mobile', origins, NULL))) AS mobile
23+
COALESCE(MAX(IF(client = 'desktop', origins, 0))) AS desktop,
24+
COALESCE(MAX(IF(client = 'mobile', origins, 0))) AS mobile
2525
) AS adoption
2626
FROM ${ctx.ref('core_web_vitals', 'technologies')}
2727
WHERE date = '${pastMonth}'

0 commit comments

Comments
 (0)