Skip to content

Commit 2e6d628

Browse files
davitbzhkennethmhc
andauthored
Update python/hsfs/core/feature_view_engine.py
Co-authored-by: kennethmhc <[email protected]>
1 parent c7d4a6d commit 2e6d628

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/hsfs/core/feature_view_engine.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -828,9 +828,9 @@ def _get_primary_keys_from_query(self, fv_query_obj, check_prefix=True):
828828
for _join in fv_query_obj._joins:
829829
fv_pks.update(
830830
[
831-
self._check_if_exists_with_prefix(
831+
(self._check_if_exists_with_prefix(
832832
feature.name, fv_pks, check_prefix
833-
)
833+
) if check_duplicate else feature.name)
834834
if _join.prefix is None
835835
else _join.prefix + feature.name
836836
for feature in _join.query._left_feature_group.features

0 commit comments

Comments
 (0)