We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 356788a commit 5f126fbCopy full SHA for 5f126fb
sdk/python/feast/infra/provider.py
@@ -290,9 +290,10 @@ def _get_column_names(
290
291
# We need to exclude join keys and timestamp columns from the list of features, after they are mapped to
292
# their final column names via the `field_mapping` field of the source.
293
- _feature_names = set(feature_names) - set(join_keys)
294
- _feature_names = _feature_names - {event_timestamp_column, created_timestamp_column}
295
- feature_names = list(_feature_names)
+ feature_names = [name for name in feature_names
+ if name not in join_keys
+ and not event_timestamp_column
296
+ and not created_timestamp_column]
297
return (
298
join_keys,
299
feature_names,
0 commit comments