build(deps): bump vortex-jni from 0.78.0 to 0.79.0#286
Merged
Conversation
0.79.0 changed the Arrow vector type the JNI reference exports for Utf8 columns from VarCharVector to ViewVarCharVector (Arrow's Utf8View layout). JavaWritesRustReadsIntegrationTest hard-cast to VarCharVector at its three Arrow-read call sites, breaking every string-column interop test with a ClassCastException. Widen those call sites to the common ValueVector interface — getObject and isNull are both declared there, so no per-vector-type branching is needed. Verified full integration module (316 tests, 0 failures) and the specific string-column tests that were failing on ubuntu/macos CI. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
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.
Summary
dev.vortex:vortex-jni0.78.0 → 0.79.0 (supersedes dependabot's build(deps): Bump dev.vortex:vortex-jni from 0.78.0 to 0.79.0 #282, which was red).VarCharVectortoViewVarCharVector.JavaWritesRustReadsIntegrationTesthard-cast toVarCharVectorat three Arrow-read call sites, breaking every string-column interop test with aClassCastException.ValueVectorinterface (getObject/isNullare both declared there), no per-vector-type branching needed.Test plan
readStringColumnhelper: passJavaWritesRustReadsIntegrationTestclass: 217/217 pass, 2 skipped (unrelated)integrationmoduleverify: 316/316 pass, 0 failures, 4 skipped (unrelated)🤖 Generated with Claude Code