We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2179fbe commit bebd7beCopy full SHA for bebd7be
sdk/python/feast/type_map.py
@@ -580,6 +580,12 @@ def pa_to_feast_value_type(pa_type_as_str: str) -> ValueType:
580
"bool": ValueType.BOOL,
581
"null": ValueType.NULL,
582
"list<element: double>": ValueType.DOUBLE_LIST,
583
+ "list<element: int64>": ValueType.INT64_LIST,
584
+ "list<element: int32>": ValueType.INT32_LIST,
585
+ "list<element: str>": ValueType.STRING_LIST,
586
+ "list<element: bool>": ValueType.BOOL_LIST,
587
+ "list<element: bytes>": ValueType.BYTES_LIST,
588
+ "list<element: float>": ValueType.FLOAT_LIST,
589
}
590
value_type = type_map[pa_type_as_str]
591
0 commit comments