Skip to content

Commit a3e8967

Browse files
fix: Patch update for test
Signed-off-by: Francisco Javier Arceo <[email protected]>
1 parent ecad170 commit a3e8967

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sdk/python/feast/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def _convert_arrow_odfv_to_proto(
364364
for feature in feature_view.features:
365365
if (
366366
feature.name in [c[0] for c in columns]
367-
and feature.name not in proto_values_by_column
367+
# and feature.name not in proto_values_by_column
368368
):
369369
# initializing the column as null
370370
null_column = pyarrow.array(
@@ -398,6 +398,7 @@ def _convert_arrow_odfv_to_proto(
398398
feature_dict = {
399399
feature.name: proto_values_by_column[feature.name]
400400
for feature in feature_view.features
401+
if feature.name in proto_values_by_column
401402
}
402403
if feature_view.write_to_online_store:
403404
table_columns = [col.name for col in table.schema]

0 commit comments

Comments
 (0)