You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by ga...@apache.org on 2018/10/17 18:59:06 UTC

[orc] branch master updated: ORC-413: Add missing Javadoc for a param in CsvReader (#318)

This is an automated email from the ASF dual-hosted git repository.

gangwu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/master by this push:
     new 25954d2  ORC-413: Add missing Javadoc for a param in CsvReader (#318)
25954d2 is described below

commit 25954d2b399fa8ee13daeba4beeefd59a27799a0
Author: Kotaro Terada <ko...@tribox.jp>
AuthorDate: Thu Oct 18 03:59:01 2018 +0900

    ORC-413: Add missing Javadoc for a param in CsvReader (#318)
    
    There is a missing Javadoc for the param "timestampFormat" in the constructor of CsvReader.
---
 java/tools/src/java/org/apache/orc/tools/convert/CsvReader.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/java/tools/src/java/org/apache/orc/tools/convert/CsvReader.java b/java/tools/src/java/org/apache/orc/tools/convert/CsvReader.java
index 6644150..ce32336 100644
--- a/java/tools/src/java/org/apache/orc/tools/convert/CsvReader.java
+++ b/java/tools/src/java/org/apache/orc/tools/convert/CsvReader.java
@@ -63,6 +63,7 @@ public class CsvReader implements RecordReader {
    * @param escapeChar the escape character
    * @param headerLines the number of header lines
    * @param nullString the string that is translated to null
+   * @param timestampFormat the timestamp format string
    */
   public CsvReader(java.io.Reader reader,
                    FSDataInputStream input,