feat(java/driver/jni): wire up ingest into temporary/namespace#4250
Draft
lidavidm wants to merge 4 commits intoapache:mainfrom
Draft
feat(java/driver/jni): wire up ingest into temporary/namespace#4250lidavidm wants to merge 4 commits intoapache:mainfrom
lidavidm wants to merge 4 commits intoapache:mainfrom
Conversation
zeroshade
requested changes
Apr 24, 2026
Member
zeroshade
left a comment
There was a problem hiding this comment.
looks good to me, just some nitpicks
Comment on lines
+242
to
+244
| wget https://dbc-cdn.columnar.tech/mssql/v1.3.1/mssql_linux_amd64_v1.3.1.tar.gz | ||
| echo "e6723cf417403f313fb75c1ac03aea9b9ff857d4a947608c8ae44eacc1aa22b3 mssql_linux_amd64_v1.3.1.tar.gz" > mssql_linux_amd64_v1.3.1.tar.gz.sha256 | ||
| sha256sum -c mssql_linux_amd64_v1.3.1.tar.gz.sha256 |
Member
There was a problem hiding this comment.
is this why we're limiting this to only running on linux? Can we use the setup-dbc action to pull the appropriate driver for the current platform and let us run this on multiple platforms rather than only running this on linux?
Member
Author
There was a problem hiding this comment.
No; we can't run Docker containers on other platforms. So there's no reason to test elsewhere.
| JNIEnv* env, [[maybe_unused]] jclass self, jlong handle) { | ||
| struct AdbcError error = ADBC_ERROR_INIT; | ||
| auto* ptr = reinterpret_cast<struct AdbcStatement*>(static_cast<uintptr_t>(handle)); | ||
| struct ArrowSchema schema = {}; |
| JNIEnv* env, [[maybe_unused]] jclass self, jlong handle) { | ||
| struct AdbcError error = ADBC_ERROR_INIT; | ||
| auto* ptr = reinterpret_cast<struct AdbcConnection*>(static_cast<uintptr_t>(handle)); | ||
| struct ArrowSchema schema = {}; |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Closes #4240.