We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c77781 commit 0cc06caCopy full SHA for 0cc06ca
sdk/python/feast/inference.py
@@ -32,7 +32,7 @@ def update_entities_with_inferred_types_from_feature_views(
32
if not (incomplete_entities_keys & set(view.entities)):
33
continue # skip if view doesn't contain any entities that need inference
34
35
- col_names_and_types = view.batch_source.get_table_column_names_and_types(config)
+ col_names_and_types = list(view.batch_source.get_table_column_names_and_types(config))
36
for entity_name in view.entities:
37
if entity_name in incomplete_entities:
38
entity = incomplete_entities[entity_name]
0 commit comments