SSC-FDM-PG0014

Unknown Pseudotype transformed to Text Type

Important Notice: Migration of Documentation Website

Please be advised that our documentation website is currently undergoing a migration to a new platform. To ensure you have access to the most up-to-date information, we kindly request that you visit our new documentation website located at:

Official Snowflake Snowconvert Documentation

For any immediate assistance or if you encounter any issues, please contact our support team at [email protected].

Thank you for your understanding.

Description

This functional difference message indicates that UNKNOWN Pseudo Type used in PostgreSQL is not supported in Snowflake and is transformed to a Text Type.

Code Example

Input Code:

IN -> Redshift_01.sql
CREATE TABLE PSEUDOTYPES
(
  COL1 UNKNOWN
)

Output Code:

OUT -> Redshift_01.sql
CREATE TABLE PSEUDOTYPES (
  COL1 TEXT /*** SSC-FDM-PG0014 -  UNKNOWN PSEUDOTYPE TRANSFORMED TO TEXT TYPE ***/
)

Recommendations

  • Carefully evaluate the usages for the columns with Unknown Data Types, as differences may occur in specific scenarios.

  • If you need more support, you can email us at [email protected]

Last updated