SSC-EWI-BQ0008

Eight hex digit Unicode escape sequence is not supported in Snowflake.

Severity

Low

Description

BigQuery supports Unicode sequences of 8 hex digits. Snowflake doesn't support this kind of Unicode sequences.

This warning is added when an 8 hex digits Unicode sequence is found when translating BigQuery code. More about BigQuery Escape Sequences.

Code Example

Input Code:

IN -> BigQuery_01.sql
SELECT "\U00100000";

Output Code:

OUT -> BigQuery_01.sql
SELECT
    !!!RESOLVE EWI!!! /*** SSC-EWI-BQ0008 - EIGHT HEX DIGIT UNICODE ESCAPE SEQUENCE IS NOT SUPPORTED IN SNOWFLAKE ***/!!!
    '\U00100000';

Recommendations

Last updated