-
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-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler #38136
Conversation
|
@github-actions crossbow submit test-r-rstudio-r-base-4.1-opensuse153 |
Revision: 3e3333d Submitted crossbow builds: ursacomputing/crossbow @ actions-94824ae4b6
|
return arrow_reader; | ||
|
||
std::shared_ptr<parquet::arrow::FileReader> file_reader_shared(arrow_reader.release()); | ||
return file_reader_shared; |
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.
Does return std::move(arrow_reader)
work?
@github-actions crossbow submit test-r-rstudio-r-base-4.1-opensuse153 |
Revision: 465b5af Submitted crossbow builds: ursacomputing/crossbow @ actions-ecf7a4c44e
|
@github-actions crossbow submit -g nightly |
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.
LGTM, but please let's watch the nightly builds before merging
Revision: 465b5af Submitted crossbow builds: ursacomputing/crossbow @ actions-eefdca42ba |
Ok, none of the CI failures is related. Thank you @paleolimbot ! |
After merging your PR, Conbench analyzed the 5 benchmarking runs that have been run so far on merge-commit ad26f3f. There were no benchmark performance regressions. 🎉 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. |
…re on at least one compiler (apache#38136) ### Rationale for this change The [test-r-rstudio-r-base-4.1-opensuse153](https://github.com/ursacomputing/crossbow/runs/17162402631) nightly has been failing with a compile error for many days. ### What changes are included in this PR? Made the unique->shared conversion explicit. ### Are these changes tested? Yes (by existing tests) ### Are there any user-facing changes? No. * Closes: apache#37952 Authored-by: Dewey Dunnington <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]>
…re on at least one compiler (apache#38136) ### Rationale for this change The [test-r-rstudio-r-base-4.1-opensuse153](https://github.com/ursacomputing/crossbow/runs/17162402631) nightly has been failing with a compile error for many days. ### What changes are included in this PR? Made the unique->shared conversion explicit. ### Are these changes tested? Yes (by existing tests) ### Are there any user-facing changes? No. * Closes: apache#37952 Authored-by: Dewey Dunnington <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]>
…re on at least one compiler (apache#38136) ### Rationale for this change The [test-r-rstudio-r-base-4.1-opensuse153](https://github.com/ursacomputing/crossbow/runs/17162402631) nightly has been failing with a compile error for many days. ### What changes are included in this PR? Made the unique->shared conversion explicit. ### Are these changes tested? Yes (by existing tests) ### Are there any user-facing changes? No. * Closes: apache#37952 Authored-by: Dewey Dunnington <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]>
Rationale for this change
The test-r-rstudio-r-base-4.1-opensuse153 nightly has been failing with a compile error for many days.
What changes are included in this PR?
Made the unique->shared conversion explicit.
Are these changes tested?
Yes (by existing tests)
Are there any user-facing changes?
No.