Skip to content

Commit

Permalink
just a try
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Apr 28, 2024
1 parent af9200b commit 79ce728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modin/core/storage_formats/pandas/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def row_axis_merge(cls, left, right, kwargs):
kwargs["sort"] = False

reverted = False
if how == "inner" and left._modin_frame._partitions.shape[0] == 1:
if how == "inner": # and left._modin_frame._partitions.shape[0] == 1:
left, right = right, left
reverted = True

Expand Down

0 comments on commit 79ce728

Please sign in to comment.