Skip to content

Commit abd6be7

Browse files
sfc-gh-madkinsadchia
authored andcommitted
fix: Fixed data mapping errors for Snowflake (#2558)
* fixed data mapping errors Signed-off-by: Miles Adkins <miles.adkins@snowflake.com> * fixed data mapping errors Signed-off-by: Miles Adkins <miles.adkins@snowflake.com>
1 parent c47fa2a commit abd6be7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sdk/python/feast/type_map.py

+2-1
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)