Skip to content

Commit 8f242e6

Browse files
fix: ODFV able to handle boolean pandas type (#3384)
fix: odfv able to handle boolean pandas type Signed-off-by: Hai Nguyen <[email protected]> Signed-off-by: Hai Nguyen <[email protected]>
1 parent 1d3c111 commit 8f242e6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sdk/python/feast/type_map.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ def python_type_to_feast_value_type(
147147
"uint8": ValueType.INT32,
148148
"int8": ValueType.INT32,
149149
"bool": ValueType.BOOL,
150+
"boolean": ValueType.BOOL,
150151
"timedelta": ValueType.UNIX_TIMESTAMP,
151152
"timestamp": ValueType.UNIX_TIMESTAMP,
152153
"datetime": ValueType.UNIX_TIMESTAMP,

0 commit comments

Comments
 (0)