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 a60154a commit df1a160Copy full SHA for df1a160
1 file changed
sql/2024/cookies/0_extract_cookies.sql
@@ -44,11 +44,11 @@ WITH intermediate_cookie AS (
44
page,
45
root_page,
46
rank,
47
- JSON_VALUE(summary, '$.startedDateTime') AS startedDateTime,
+ payload.startedDateTime AS startedDateTime,
48
cookie
49
FROM
50
- `httparchive.all.pages`,
51
- UNNEST(JSON_EXTRACT_ARRAY(custom_metrics, '$.cookies')) AS cookie
+ `httparchive.crawl.pages`,
+ UNNEST(JSON_EXTRACT_ARRAY(custom_metrics.cookies)) AS cookie
52
WHERE
53
date = '2024-06-01'
54
)
0 commit comments