forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
GH-46584 Iterate endpoint #63
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
Merged
Merged
Changes from 16 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
6fe1b0d
DRAFT changes to connect
alinaliBQ 8510e4a
draft fix for iterating endpoints
alinaliBQ 182f925
more draft
alinaliBQ 3c23d43
Add more draft code
alinaliBQ f8e918c
Draft code for save value of `FlightClientOptions`
alinaliBQ 46db031
Draft for passing flight sql client
alinaliBQ 4f1800f
Clean up comments
alinaliBQ 6cb1ad3
TEMP - DRAFT for adding `OrderedServer`
alinaliBQ 6e9d114
Use `TestFlightServer`
alinaliBQ fa7a92f
Fix build errors from missing `gmock`
alinaliBQ b1ad70f
Add checks for array data
alinaliBQ c2c7cdc
Reference GH-47117 and Clean up code
alinaliBQ 45aae24
Trigger deploy or CI
alinaliBQ a0ad2e6
Fix Lint
alinaliBQ 39b1bc6
Add driver and DSN to built-in properties
alinaliBQ 122d832
Allow `=` in values inside connection strings
alinaliBQ 1fae5dc
Remove unneeded shared lib
alinaliBQ b76e735
Merge branch 'apache-odbc' into gh-46584-iterate-endpoint
alinaliBQ 2086507
Address comments from Rob
alinaliBQ File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,9 +58,9 @@ class NoOpClientAuthHandler : public arrow::flight::ClientAuthHandler { | |
|
|
||
| arrow::Status Authenticate(arrow::flight::ClientAuthSender* outgoing, | ||
| arrow::flight::ClientAuthReader* incoming) override { | ||
| // Write a blank string. The server should ignore this and just accept any Handshake | ||
| // Return OK Status. The server should ignore this and just accept any Handshake | ||
| // request. | ||
| return outgoing->Write(std::string()); | ||
| return arrow::Status::OK(); | ||
|
Comment on lines
+61
to
+63
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After the original flightsql-odbc code has been written, Arrow API changed and now would need |
||
| } | ||
|
|
||
| arrow::Status GetToken(std::string* token) override { | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This is the fix for the 12 build errors on the local environment. Rob and I have both seen this issue before. I am not sure why it is only visible in our local environments and not seen in CI