Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX-#6786: properly d2p for cross DataFrame.join #6787

Merged
merged 1 commit into from
Dec 1, 2023

Conversation

anmyachev
Copy link
Collaborator

@anmyachev anmyachev commented Nov 30, 2023

What do these changes do?

  • first commit message and PR title follow format outlined here

    NOTE: If you edit the PR title to match this format, you need to add another commit (even if it's empty) or amend your last commit for the CI job that checks the PR title to pick up the new PR title.

  • passes flake8 modin/ asv_bench/benchmarks scripts/doc_checker.py
  • passes black --check modin/ asv_bench/benchmarks scripts/doc_checker.py
  • signed commit with git commit -s
  • Resolves BUG: value error when how='cross' and timeout error #6786
  • tests added and passing
  • module layout described at docs/development/architecture.rst is up-to-date

@@ -1163,7 +1163,7 @@ def join(
if other.name is None:
raise ValueError("Other Series must have a name")
other = self.__constructor__(other)
if on is not None:
if on is not None or how == "cross":
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After this branch there is an implementation using concat, but parameter how=='concat' is not exist for it (only for join and merge).

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok

@YarShev YarShev merged commit 1bd39dc into modin-project:master Dec 1, 2023
37 checks passed
@anmyachev anmyachev deleted the issue6786 branch December 1, 2023 12:28
Copy link

@devendra1007 devendra1007 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK

@@ -1163,7 +1163,7 @@ def join(
if other.name is None:
raise ValueError("Other Series must have a name")
other = self.__constructor__(other)
if on is not None:
if on is not None or how == "cross":

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BUG: value error when how='cross' and timeout error
3 participants