We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DATETIME
TIMESTAMP
1 parent 2fccf76 commit af219e7Copy full SHA for af219e7
1 file changed
sdk/python/feast/type_map.py
@@ -340,8 +340,8 @@ def pa_to_feast_value_type(pa_type_as_str: str) -> ValueType:
340
341
def bq_to_feast_value_type(bq_type_as_str):
342
type_map: Dict[ValueType, Union[str, Dict[str, Any]]] = {
343
- "DATETIME": ValueType.STRING, # Update to ValueType.UNIX_TIMESTAMP once #1520 lands.
344
- "TIMESTAMP": ValueType.STRING, # Update to ValueType.UNIX_TIMESTAMP once #1520 lands.
+ "DATETIME": ValueType.UNIX_TIMESTAMP,
+ "TIMESTAMP": ValueType.UNIX_TIMESTAMP,
345
"INTEGER": ValueType.INT64,
346
"INT64": ValueType.INT64,
347
"STRING": ValueType.STRING,
0 commit comments