Snowflake External Table failed to cast variant value NULL to DATETIME/TIMESTAMP_NTZ type
问题 Created an external table with a column of type datetime (TIMESTAMP_NTZ type), the external stage has a csv file with null value in the column. Selecting from the external table is giving "Failed to cast variant value "null" to TIMESTAMP_NTZ" CREATE OR REPLACE EXTERNAL TABLE ext_table_datetime ( col1 datetime as (value:c1::datetime) ) with location = 's3://bucket_name' file_format = file_format_1 auto_refresh = true; Also I have the file format defined as follows, which works for other column