Skip to content

Commit d8c2abb

Browse files
Update sdk/python/feast/type_map.py
Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent 0d06d54 commit d8c2abb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdk/python/feast/type_map.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1192,7 +1192,7 @@ def oracle_to_feast_value_type(oracle_type_as_str: str) -> ValueType:
11921192

11931193
# Handle parameterized types like "decimal(10, 2)"
11941194
if "(" in type_str:
1195-
type_str = type_str.split("(")[0]
1195+
type_str = type_str.split("(")[0].strip()
11961196

11971197
type_map: Dict[str, ValueType] = {
11981198
# Ibis types returned by Oracle backend

0 commit comments

Comments
 (0)