Skip to content

Commit 54dfaa3

Browse files
committed
fix type
1 parent c4f368a commit 54dfaa3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

definitions/output/crawl/parsed_css.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ WHERE date = '${constants.currentMonth}'
1717
`).query(ctx => `
1818
SELECT
1919
* EXCEPT(css),
20-
NULL AS css_backup,
20+
CAST(NULL AS STRING) AS css_backup,
2121
SAFE.PARSE_JSON(css, wide_number_mode=>'round') AS css
2222
FROM ${ctx.ref('crawl_staging', 'parsed_css')}
2323
WHERE date = '${constants.currentMonth}'
@@ -31,7 +31,7 @@ WHERE date = '${constants.currentMonth}'
3131
INSERT INTO ${ctx.self()}
3232
SELECT
3333
* EXCEPT(css),
34-
NULL AS css_backup,
34+
CAST(NULL AS STRING) AS css_backup,
3535
SAFE.PARSE_JSON(css, wide_number_mode=>'round') AS css
3636
FROM ${ctx.ref('crawl_staging', 'parsed_css')}
3737
WHERE date = '${constants.currentMonth}'

0 commit comments

Comments
 (0)