You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Snowflake's T+D expected records (in both sqlgenerator and TDTest) have lowercase _airbyte_extracted_at, etc. even though the columns are actually uppercased in the destination. This is because SnowflakeTestUtils now has a dumb hack to downcase those columns when dumping the final table.
Remove that hack. Update the expected records to have uppercase _AIRBYTE_* column names.
Update RecordDiffer to accept the metadata column names in the constructor, rather than hardcoding lowercased _airbyte_* everywhere. Then snowflake can pass in uppercased names.
The text was updated successfully, but these errors were encountered:
minor tech debt from #30056
Snowflake's T+D expected records (in both sqlgenerator and TDTest) have lowercase
_airbyte_extracted_at
, etc. even though the columns are actually uppercased in the destination. This is because SnowflakeTestUtils now has a dumb hack to downcase those columns when dumping the final table.Remove that hack. Update the expected records to have uppercase
_AIRBYTE_*
column names.Update RecordDiffer to accept the metadata column names in the constructor, rather than hardcoding lowercased
_airbyte_*
everywhere. Then snowflake can pass in uppercased names.The text was updated successfully, but these errors were encountered: