Skip to content

Commit 6474b4b

Browse files
fix: Add NUMERIC to bq_to_feast type map (feast-dev#3719)
Signed-off-by: Hai Nguyen <quanghai.ng1512@gmail.com>
1 parent a3fcd1f commit 6474b4b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sdk/python/feast/type_map.py

+1
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,7 @@ def bq_to_feast_value_type(bq_type_as_str: str) -> ValueType:
528528
"DATETIME": ValueType.UNIX_TIMESTAMP,
529529
"TIMESTAMP": ValueType.UNIX_TIMESTAMP,
530530
"INTEGER": ValueType.INT64,
531+
"NUMERIC": ValueType.INT64,
531532
"INT64": ValueType.INT64,
532533
"STRING": ValueType.STRING,
533534
"FLOAT": ValueType.DOUBLE,

0 commit comments

Comments
 (0)