Skip to content

Commit

Permalink
fix: ODFV able to handle boolean pandas type (#3384)
Browse files Browse the repository at this point in the history
fix: odfv able to handle boolean pandas type

Signed-off-by: Hai Nguyen <quanghai.ng1512@gmail.com>

Signed-off-by: Hai Nguyen <quanghai.ng1512@gmail.com>
  • Loading branch information
sudohainguyen committed Dec 14, 2022
1 parent 1d3c111 commit 8f242e6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sdk/python/feast/type_map.py
Expand Up @@ -147,6 +147,7 @@ def python_type_to_feast_value_type(
"uint8": ValueType.INT32,
"int8": ValueType.INT32,
"bool": ValueType.BOOL,
"boolean": ValueType.BOOL,
"timedelta": ValueType.UNIX_TIMESTAMP,
"timestamp": ValueType.UNIX_TIMESTAMP,
"datetime": ValueType.UNIX_TIMESTAMP,
Expand Down

0 comments on commit 8f242e6

Please sign in to comment.