We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a444692 commit b811245Copy full SHA for b811245
1 file changed
sdk/python/feast/infra/offline_stores/contrib/trino_offline_store/trino_type_map.py
@@ -21,6 +21,7 @@ def trino_to_feast_value_type(trino_type_as_str: str) -> ValueType:
21
"varchar": ValueType.STRING,
22
"boolean": ValueType.BOOL,
23
"real": ValueType.FLOAT,
24
+ "date": ValueType.STRING,
25
}
26
_trino_type_as_str: str = trino_type_as_str
27
trino_type_as_str = trino_type_as_str.lower()
0 commit comments