ARROW-1347: [JAVA] Return consistent child field name for List Vectors#1119
Closed
BryanCutler wants to merge 2 commits intoapache:masterfrom
Closed
ARROW-1347: [JAVA] Return consistent child field name for List Vectors#1119BryanCutler wants to merge 2 commits intoapache:masterfrom
BryanCutler wants to merge 2 commits intoapache:masterfrom
Conversation
Member
Author
|
Continuation of #959 to use |
Contributor
|
+1 LGTM |
Member
Author
|
Thanks @StevenMPhillips! |
siddharthteotia
pushed a commit
to siddharthteotia/arrow
that referenced
this pull request
Oct 6, 2017
This makes the child fields of ListVector have consistent names of `ListVector.DATA_VECTOR_NAME`. Previously, an empty ListVector would have a child name of `ZeroVector.name` which is "[DEFAULT]". Author: Bryan Cutler <[email protected]> Author: Steven Phillips <[email protected]> Closes apache#1119 from BryanCutler/java-ListVector-child-name-ARROW-1347 and squashes the following commits: c240378 [Bryan Cutler] changed to use instanceof and added test 2923a45 [Steven Phillips] ARROW-1347: [JAVA] return consistent child field name for List vectors
pribor
pushed a commit
to GlobalWebIndex/arrow
that referenced
this pull request
Oct 24, 2025
This makes the child fields of ListVector have consistent names of `ListVector.DATA_VECTOR_NAME`. Previously, an empty ListVector would have a child name of `ZeroVector.name` which is "[DEFAULT]". Author: Bryan Cutler <[email protected]> Author: Steven Phillips <[email protected]> Closes apache#1119 from BryanCutler/java-ListVector-child-name-ARROW-1347 and squashes the following commits: c240378 [Bryan Cutler] changed to use instanceof and added test 2923a45 [Steven Phillips] ARROW-1347: [JAVA] return consistent child field name for List vectors
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.
This makes the child fields of ListVector have consistent names of
ListVector.DATA_VECTOR_NAME. Previously, an empty ListVector would have a child name ofZeroVector.namewhich is "[DEFAULT]".