Skip to content

Commit

Permalink
cast to int64
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ostapenko committed Nov 12, 2024
1 parent 689e3cf commit 85eb576
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions definitions/output/core_web_vitals/technologies.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ SELECT
SAFE_CAST(APPROX_QUANTILES(seo, 1000)[OFFSET(500)] AS NUMERIC) AS median_lighthouse_score_seo,
# Page weight stats
APPROX_QUANTILES(bytesTotal, 1000)[OFFSET(500)] AS median_bytes_total,
APPROX_QUANTILES(bytesJS, 1000)[OFFSET(500)] AS median_bytes_js,
APPROX_QUANTILES(bytesImg, 1000)[OFFSET(500)] AS median_bytes_image
SAFE_CAST(APPROX_QUANTILES(bytesTotal, 1000)[OFFSET(500)] AS INT64) AS median_bytes_total,
SAFE_CAST(APPROX_QUANTILES(bytesJS, 1000)[OFFSET(500)] AS INT64) AS median_bytes_js,
SAFE_CAST(APPROX_QUANTILES(bytesImg, 1000)[OFFSET(500)] AS INT64) AS median_bytes_image
FROM
lab_data
Expand Down

0 comments on commit 85eb576

Please sign in to comment.