-
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-15192: [C++] Bring back case_when
tests for union types
#39308
Conversation
|
30097f0
to
c27166f
Compare
@github-actions crossbow submit -g cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1, thank you @zanmato1984 !
Revision: c27166f Submitted crossbow builds: ursacomputing/crossbow @ actions-ede34c36c9 |
After merging your PR, Conbench analyzed the 6 benchmarking runs that have been run so far on merge-commit 2308cdf. There was 1 benchmark result indicating a performance regression:
The full Conbench report has more details. It also includes information about 1 possible false positive for unstable benchmarks that are known to sometimes produce them. |
…pache#39308) ### Rationale for this change Bring back the problematic test case of random `case_when` on union(bool, string) type. This case used to fail. However apache#36018 already addressed the issue. More information about how it used to fail, please refer to apache#15192 (comment). ### What changes are included in this PR? Bring back the test code. ### Are these changes tested? Yes, the change is the test. ### Are there any user-facing changes? No. * Closes: apache#15192 Authored-by: zanmato <zanmato1984@gmail.com> Signed-off-by: Antoine Pitrou <antoine@python.org>
…pache#39308) ### Rationale for this change Bring back the problematic test case of random `case_when` on union(bool, string) type. This case used to fail. However apache#36018 already addressed the issue. More information about how it used to fail, please refer to apache#15192 (comment). ### What changes are included in this PR? Bring back the test code. ### Are these changes tested? Yes, the change is the test. ### Are there any user-facing changes? No. * Closes: apache#15192 Authored-by: zanmato <zanmato1984@gmail.com> Signed-off-by: Antoine Pitrou <antoine@python.org>
Rationale for this change
Bring back the problematic test case of random
case_when
on union(bool, string) type. This case used to fail. However #36018 already addressed the issue.More information about how it used to fail, please refer to #15192 (comment).
What changes are included in this PR?
Bring back the test code.
Are these changes tested?
Yes, the change is the test.
Are there any user-facing changes?
No.