Uh oh!
There was an error while loading. Please reload this page.
ARROW-482 [Java] Exposing custom field metadata - #611
Closed
elahrvivaz wants to merge 1 commit into
Closed
Conversation
wesm
commented
Apr 29, 2017
Member
Since this might take some discussion, do you mind if this does not block the 0.3 release? I'd like to release 0.4 and beyond a little faster |
elahrvivaz
commented
May 1, 2017
ContributorAuthor
sure |
julienledem
commented
May 3, 2017
Member
overall this looks good to me. Opinions regarding making the removed Field constructors @deprecated rather than deleting them? |
elahrvivaz
commented
May 3, 2017
ContributorAuthor
That sounds good, I'll restore them and mark them deprecated. |
wesm
commented
May 10, 2017
Member
@elahrvivaz can you rebase? @julienledem is this good to go? |
* Making non-FieldType constructors deprecated to ensure consistent vector creation
elahrvivaz
commented
May 10, 2017
ContributorAuthor
rebased |
julienledem
commented
May 12, 2017
Member
yep +1 |
jeffknupp pushed a commit
to jeffknupp/arrow
that referenced
this pull request
Jun 3, 2017
I added the metadata to the `FieldType` object. It doesn't necessarily seem the right place for it, but it minimizes having to change method signatures to pass around the metadata. I also tried to standardize vector constructors on `FieldType` to ensure it's passed correctly. Author: Emilio Lahr-Vivaz <elahrvivaz@ccri.com> Closesapache#611 from elahrvivaz/ARROW-482 and squashes the following commits: 63a76e0 [Emilio Lahr-Vivaz] ARROW-482 [Java] Exposing custom field metadata
pribor pushed a commit
to GlobalWebIndex/arrow
that referenced
this pull request
Oct 24, 2025
I added the metadata to the `FieldType` object. It doesn't necessarily seem the right place for it, but it minimizes having to change method signatures to pass around the metadata. I also tried to standardize vector constructors on `FieldType` to ensure it's passed correctly. Author: Emilio Lahr-Vivaz <elahrvivaz@ccri.com> Closesapache#611 from elahrvivaz/ARROW-482 and squashes the following commits: 63a76e0 [Emilio Lahr-Vivaz] ARROW-482 [Java] Exposing custom field metadata
pribor pushed a commit
to GlobalWebIndex/arrow
that referenced
this pull request
Oct 24, 2025
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 freeto 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.
I added the metadata to the
FieldTypeobject. It doesn't necessarily seem the right place for it, but it minimizes having to change method signatures to pass around the metadata. I also tried to standardize vector constructors onFieldTypeto ensure it's passed correctly.