I am loading two parquet files both have 1 row each into a variant column in a table on Snowflake. When i read those two files and print fields using python , i see same number of fields (30 in this case). When i load those two parquet files into a variant data type column into a table on a snowflake and query that table, i see only 29 fields from one file and 30 fields from other file.
when i look at the python output for this missing field, i see the one file has a value (13 in this case) and other file has a value as NaN.
For some reason, Snowflake is not showing the field that has a empty value.
Do i need to do something different while loading into snowflake to not ignore fields that doesn't have value in the parquet files.