Skip to content

Commit 53c2ce2

Browse files
fix: Fixed data mapping errors for Snowflake (#2558)
* fixed data mapping errors Signed-off-by: Miles Adkins <[email protected]> * fixed data mapping errors Signed-off-by: Miles Adkins <[email protected]>
1 parent ce5606f commit 53c2ce2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sdk/python/feast/type_map.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,8 @@ def snowflake_python_type_to_feast_value_type(
529529
"uint8": ValueType.INT32,
530530
"int8": ValueType.INT32,
531531
"datetime64[ns]": ValueType.UNIX_TIMESTAMP,
532-
"object": ValueType.UNKNOWN,
532+
"object": ValueType.STRING,
533+
"bool": ValueType.BOOL,
533534
}
534535

535536
return type_map[snowflake_python_type_as_str.lower()]

0 commit comments

Comments
 (0)