-
Notifications
You must be signed in to change notification settings - Fork 4k
GH-37485: [C++][Skyhook] Don't use deprecated BufferReader API #37486
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
Conversation
|
|
|
@github-actions crossbow submit test-skyhook-integration |
|
Revision: 8a89cc6 Submitted crossbow builds: ursacomputing/crossbow @ actions-89548e38e7
|
|
CI looks unrelated, will merge. Thanks @kou ! |
|
After merging your PR, Conbench analyzed the 6 benchmarking runs that have been run so far on merge-commit e8c39fb. There were 5 benchmark results indicating a performance regression:
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. |
…pache#37486) ### Rationale for this change apacheGH-37360 deprecated `BufferReader(const uint8_t*, int64_t)`. ### What changes are included in this PR? Use `BufferReader(std::shared_ptr<Buffer>)` instead. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: apache#37485 Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Antoine Pitrou <antoine@python.org>
…pache#37486) ### Rationale for this change apacheGH-37360 deprecated `BufferReader(const uint8_t*, int64_t)`. ### What changes are included in this PR? Use `BufferReader(std::shared_ptr<Buffer>)` instead. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: apache#37485 Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Antoine Pitrou <antoine@python.org>
Rationale for this change
GH-37360 deprecated
BufferReader(const uint8_t*, int64_t).What changes are included in this PR?
Use
BufferReader(std::shared_ptr<Buffer>)instead.Are these changes tested?
Yes.
Are there any user-facing changes?
No.