-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-15198: [C++][FlightRPC] Fix conda-python-hdfs build error on flight-sql branch #12035
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
ARROW-15198: [C++][FlightRPC] Fix conda-python-hdfs build error on flight-sql branch #12035
Conversation
…using with arrow::flight::Result
|
Thanks for opening a pull request! If this is not a minor PR. Could you open an issue for this pull request on JIRA? https://issues.apache.org/jira/browse/ARROW Opening JIRAs ahead of time contributes to the Openness of the Apache Arrow project. Then could you also rename pull request title in the following format? or See also: |
|
@github-actions crossbow submit test-conda-python-3.7-hdfs-3.2.1 test-conda-python-3.7-hdfs-2.9.2 |
|
Revision: 966c434 Submitted crossbow builds: ursacomputing/crossbow @ actions-1347
|
…ight-sql branch This should fix Crossbow build `conda-python-hdfs` on `flight-sql`: https://github.com/ursacomputing/crossbow/runs/4612261742?check_suite_focus=true Using `arrow::Result` on `SqliteStatementBatchReader::Create` to avoid confusing with `arrow::flight::Result`. Closes #12035 from rafael-telles/flight-sql-fix-conda-python-hdfs-build Authored-by: Rafael Telles <[email protected]> Signed-off-by: David Li <[email protected]>
Implement Flight SQL in C++ and Java, and add the protocol definitions. This is a combination of multiple pull requests, merged into one branch before merging into master. Closes #10906 (ARROW-12922). Closes #11507 (ARROW-14421). Closes #11989 (ARROW-15112). Closes #12021 (ARROW-15187). Closes #12035 (ARROW-15198). Closes #12013 from apache/flight-sql Lead-authored-by: Rafael Telles <[email protected]> Co-authored-by: Abner Eduardo Ferreira <[email protected]> Co-authored-by: James Duong <[email protected]> Co-authored-by: Jose Almeida <[email protected]> Co-authored-by: Juscelino Junior <[email protected]> Co-authored-by: Kyle Porter <[email protected]> Co-authored-by: Ryan Nicholson <[email protected]> Co-authored-by: Vinicius Fraga <[email protected]> Co-authored-by: tifflhl <[email protected]> Signed-off-by: David Li <[email protected]>
Implement Flight SQL in C++ and Java, and add the protocol definitions. This is a combination of multiple pull requests, merged into one branch before merging into master. Closes apache#10906 (ARROW-12922). Closes apache#11507 (ARROW-14421). Closes apache#11989 (ARROW-15112). Closes apache#12021 (ARROW-15187). Closes apache#12035 (ARROW-15198). Closes apache#12013 from apache/flight-sql Lead-authored-by: Rafael Telles <[email protected]> Co-authored-by: Abner Eduardo Ferreira <[email protected]> Co-authored-by: James Duong <[email protected]> Co-authored-by: Jose Almeida <[email protected]> Co-authored-by: Juscelino Junior <[email protected]> Co-authored-by: Kyle Porter <[email protected]> Co-authored-by: Ryan Nicholson <[email protected]> Co-authored-by: Vinicius Fraga <[email protected]> Co-authored-by: tifflhl <[email protected]> Signed-off-by: David Li <[email protected]>
This should fix Crossbow build
conda-python-hdfsonflight-sql:https://github.com/ursacomputing/crossbow/runs/4612261742?check_suite_focus=true
Using
arrow::ResultonSqliteStatementBatchReader::Createto avoid confusing witharrow::flight::Result.