This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-1.7 by this push:
new 3c7c887 ORC-1015: Update OrcFile.WriterOptions::memory javadoc (#923)
3c7c887 is described below
commit 3c7c887d9c8b2b0749b43f6afad86e9cb67a60c4
Author: Lei <[email protected]>
AuthorDate: Fri Oct 1 23:39:54 2021 -0700
ORC-1015: Update OrcFile.WriterOptions::memory javadoc (#923)
### What changes were proposed in this pull request?
Configuring a customized `MemoryManager` is now a public API so changing
the comment to reflect the status quo.
### Why are the changes needed?
This will fix this.
-
https://orc.apache.org/api/orc-core/org/apache/orc/OrcFile.WriterOptions.html#memory-org.apache.orc.MemoryManager-
### How was this patch tested?
There's no code change but a comment fixing.
(cherry picked from commit 7d99340c115a57bb9d1b81df1e771a20a71bd9e5)
Signed-off-by: Dongjoon Hyun <[email protected]>
---
java/core/src/java/org/apache/orc/OrcFile.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/core/src/java/org/apache/orc/OrcFile.java
b/java/core/src/java/org/apache/orc/OrcFile.java
index 82d8828..0757acc 100644
--- a/java/core/src/java/org/apache/orc/OrcFile.java
+++ b/java/core/src/java/org/apache/orc/OrcFile.java
@@ -691,7 +691,7 @@ public class OrcFile {
}
/**
- * A package local option to set the memory manager.
+ * A public option to set the memory manager.
*/
public WriterOptions memory(MemoryManager value) {
memoryManagerValue = value;