-
Notifications
You must be signed in to change notification settings - Fork 485
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
ORC-951: Add since
tag to org.apache.orc.Reader
interface
#864
Conversation
cc @omalley , @pgaref , @williamhyun |
@@ -144,23 +160,27 @@ | |||
* Get the file tail (footer + postscript) |
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.
Could you add the tag to getWriterVersion
? And please check the other functions once more.
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.
Oh. Thanks. Sure.
@@ -220,6 +243,7 @@ public Options(Configuration conf) { | |||
* Set the list of columns to read. |
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.
Could you also add the tags to the Options class and its constructors?
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.
Sure. I added.
Could you review this once more please, @williamhyun ? |
### What changes were proposed in this pull request? This PR aims to add `since` tag to `org.apache.orc.Reader` interface. - The APIs added by ORC-1 is marked as `1.1.0` according to the JIRA release version. - The followings are the added versions. - 1.1.0, 1.2.0, 1.3.0, 1.5.0, 1.5.3, 1.5.9, 1.5.11, 1.6.0, 1.7.0 ### Why are the changes needed? To help ORC developers to check the API availability easily by improving code and Javadoc. ### How was this patch tested? Manual. (cherry picked from commit 5778caa) Signed-off-by: Dongjoon Hyun <[email protected]>
What changes were proposed in this pull request?
This PR aims to add
since
tag toorg.apache.orc.Reader
interface.1.1.0
according to the JIRA release version.Why are the changes needed?
To help ORC developers to check the API availability easily by improving code and Javadoc.
How was this patch tested?
Manual.