-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
GH-36659: [Python] Fix pyarrow.dataset.Partitioning.__eq__ when comparing with other type #36661
GH-36659: [Python] Fix pyarrow.dataset.Partitioning.__eq__ when comparing with other type #36661
Conversation
… comparing with other type
|
@github-actions crossbow submit dask |
Revision: 492ba09 Submitted crossbow builds: ursacomputing/crossbow @ actions-fc21bc16e4
|
The failures seems related to not having rebased after: 3bdbd0d |
Indeed, so the actual segfault is fixed by this PR, so that looks good. |
…ring with other type (#36661) ### Rationale for this change Ensure that `part == other` doesn't crash with `other` is not a Partitioning instance Small follow-up on #36462 * Closes: #36659 Authored-by: Joris Van den Bossche <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]>
… comparing with other type (apache#36661) ### Rationale for this change Ensure that `part == other` doesn't crash with `other` is not a Partitioning instance Small follow-up on apache#36462 * Closes: apache#36659 Authored-by: Joris Van den Bossche <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]>
After merging your PR, Conbench analyzed the 6 benchmarking runs that have been run so far on merge-commit 994c73b. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about possible false positives for unstable benchmarks that are known to sometimes produce them. |
… comparing with other type (apache#36661) ### Rationale for this change Ensure that `part == other` doesn't crash with `other` is not a Partitioning instance Small follow-up on apache#36462 * Closes: apache#36659 Authored-by: Joris Van den Bossche <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]>
Rationale for this change
Ensure that
part == other
doesn't crash withother
is not a Partitioning instanceSmall follow-up on #36462