Skip to content

Commit 7cc1cc0

Browse files
Remove snowflake to feast type mapping for arrays (not supported)
1 parent e419e68 commit 7cc1cc0

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

sdk/python/feast/type_map.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,6 @@ def snowflake_type_to_feast_value_type(snowflake_type: str) -> ValueType:
651651
"TIMESTAMP_TZ": ValueType.UNIX_TIMESTAMP,
652652
"TIMESTAMP_LTZ": ValueType.UNIX_TIMESTAMP,
653653
"TIMESTAMP_NTZ": ValueType.UNIX_TIMESTAMP,
654-
"ARRAY": ValueType.STRING, # Actual list type cannot be inferred, so failing to a String instead
655654
}
656655
return type_map[snowflake_type]
657656

sdk/python/tests/integration/materialization/test_snowflake.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ def test_snowflake_materialization_consistency_internal_with_lists(
146146
now = datetime.utcnow()
147147

148148
full_feature_names = True
149-
# TODO use both tz-naive & tz-aware timestamps to test that they're both correctly handled
150149
start_date = (now - timedelta(hours=5)).replace(tzinfo=utc)
151150
end_date = split_dt
152151
fs.materialize(

0 commit comments

Comments
 (0)