-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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-43506: [Java] Fix TestFragmentScanOptions result not match #43639
Conversation
Thanks for opening a pull request! If this is not a minor PR. Could you open an issue for this pull request on GitHub? https://github.com/apache/arrow/issues/new/choose Opening GitHub issues ahead of time contributes to the Openness of the Apache Arrow project. Then could you also rename the pull request title in the following format?
or
In the case of PARQUET issues on JIRA the title also supports:
See also: |
Rename to -> #43506: [Java] Fix TestFragmentScanOptions result not match |
@github-actions crossbow submit -g java |
Revision: ea541c6 Submitted crossbow builds: ursacomputing/crossbow @ actions-acd4c173ff |
@jinchengchenghh I think still there is an inaccuracy in the test case. One CI is failing. |
Still the CI is failing... |
Still failing right... |
|
I will take a look today. |
ea541c6
to
52871fd
Compare
Only gandiva failed now. @vibhatha |
@jinchengchenghh it seems like there is a symbol not found issue again; https://github.com/apache/arrow/actions/runs/10363135011/job/28686234425?pr=43639#step:7:20512 |
Do I need to disable this test in this PR? Or you will create a new PR to disable it? |
@kou shall we disable this like the last time but note this as an issue and comment in the code? |
Yes but why is this happen again? Was #43503 not enough? |
The tests related to Gandiva passed when we merged that PR, but it failed due to the exact reason in this PR. We might have missed something as it seems. |
Yes, this test Does it not occur before? |
We should check that trace. We may have missed it. |
@jinchengchenghh let's disable this too. |
Yes, I think we could disable the gandiva test in a separate PR. Can we merge this one first? @vibhatha |
@github-actions crossbow submit -g java |
Revision: 855a3af Submitted crossbow builds: ursacomputing/crossbow @ actions-7af4649f9c |
Can you help merge this one? @vibhatha Thanks! |
@jinchengchenghh I don't have merge rights. @lidavidm will definitely merge this as it is already approved. LGTM as well. |
Ok. Thanks for your kindly review. @vibhatha |
@jinchengchenghh did we file a new issue for the Gandiva failure? |
Maybe we can use the exists issue apache/arrow-java#63 |
Sure let's do that. |
@vibhatha do we need to ping any Gandiva maintainers to figure out the failures? |
ok, let me dig |
Thanks @lidavidm, I am not well versed in this part of the project. |
After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit 5ef7e01. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 2 possible false positives for unstable benchmarks that are known to sometimes produce them. |
Rationale for this change
JNI test was not tested in CI. So the test failed but passed the CI.
The parseChar function should return char but return bool, a typo error.
What changes are included in this PR?
Are these changes tested?
Yes
Are there any user-facing changes?
No