We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecad170 commit a3e8967Copy full SHA for a3e8967
sdk/python/feast/utils.py
@@ -364,7 +364,7 @@ def _convert_arrow_odfv_to_proto(
364
for feature in feature_view.features:
365
if (
366
feature.name in [c[0] for c in columns]
367
- and feature.name not in proto_values_by_column
+ # and feature.name not in proto_values_by_column
368
):
369
# initializing the column as null
370
null_column = pyarrow.array(
@@ -398,6 +398,7 @@ def _convert_arrow_odfv_to_proto(
398
feature_dict = {
399
feature.name: proto_values_by_column[feature.name]
400
for feature in feature_view.features
401
+ if feature.name in proto_values_by_column
402
}
403
if feature_view.write_to_online_store:
404
table_columns = [col.name for col in table.schema]
0 commit comments