Skip to content

Commit

Permalink
Change subset merging method (#334)
Browse files Browse the repository at this point in the history
Fixes issues when merging dataframes with different number of partitions
  • Loading branch information
PhilippeMoussalli authored Aug 2, 2023
1 parent 8cb87fd commit 7fef744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fondant/data_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def load_dataframe(self) -> dd.DataFrame:
subset_df,
left_index=True,
right_index=True,
how="left",
how="inner",
)

dataframe = self.partition_loaded_dataframe(dataframe)
Expand Down

0 comments on commit 7fef744

Please sign in to comment.