MSC-BQ0013
Eight hex digit Unicode escape sequence is not supported in Snowflake
This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.
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 Snowflake Escape Sequences.
Code Example
BigQuery
SELECT "\U00100000";
Snowflake
SELECT
--** MSC-WARNING - MSC-BQ0010 - EIGHT HEX DIGIT UNICODE ESCAPE SEQUENCE IS NOT SUPPORTED IN SNOWFLAKE **
'\U00100000';
Recommendations
If you need more support, you can email us at [email protected]
Last updated