We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cdb056 commit da2dc2cCopy full SHA for da2dc2c
1 file changed
definitions/output/crawl/parsed_css.js
@@ -15,7 +15,9 @@ DELETE FROM ${ctx.self()}
15
WHERE date = '${constants.currentMonth}'
16
AND client = 'desktop';
17
`).query(ctx => `
18
-SELECT *
+SELECT
19
+ * EXCEPT(css),
20
+ SAFE.PARSE_JSON(css, wide_number_mode=>'round') AS css
21
FROM ${ctx.ref('crawl_staging', 'parsed_css')}
22
23
AND client = 'desktop'
@@ -26,7 +28,9 @@ WHERE date = '${constants.currentMonth}'
26
28
AND client = 'mobile';
27
29
30
INSERT INTO ${ctx.self()}
31
32
33
34
35
36
AND client = 'mobile'
0 commit comments