You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2021/06/04 15:11:44 UTC

[orc] branch main updated: ORC-809: Add TIMESTAMP_INSTANT to ORC specs (#711)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 675ed92  ORC-809: Add TIMESTAMP_INSTANT to ORC specs (#711)
675ed92 is described below

commit 675ed92bfc1354e3aaba5bd03635d7e14d1c9cc6
Author: William Hyun <wi...@apache.org>
AuthorDate: Fri Jun 4 08:11:36 2021 -0700

    ORC-809: Add TIMESTAMP_INSTANT to ORC specs (#711)
    
    ### What changes were proposed in this pull request?
    This PR aims to add TIMESTAMP_INSTANT to the ORC specs documents.
    
    ### Why are the changes needed?
    This will make the specs document up to date before the 1.7.0 release.
    
    ### How was this patch tested?
    N/A
---
 site/specification/ORCv1.md | 1 +
 site/specification/ORCv2.md | 1 +
 2 files changed, 2 insertions(+)

diff --git a/site/specification/ORCv1.md b/site/specification/ORCv1.md
index bc166a9..472e11e 100644
--- a/site/specification/ORCv1.md
+++ b/site/specification/ORCv1.md
@@ -240,6 +240,7 @@ message Type {
  DATE = 15;
  VARCHAR = 16;
  CHAR = 17;
+ TIMESTAMP_INSTANT = 18;
  }
  // the kind of this type
  required Kind kind = 1;
diff --git a/site/specification/ORCv2.md b/site/specification/ORCv2.md
index a946542..703cea0 100644
--- a/site/specification/ORCv2.md
+++ b/site/specification/ORCv2.md
@@ -260,6 +260,7 @@ message Type {
  DATE = 15;
  VARCHAR = 16;
  CHAR = 17;
+ TIMESTAMP_INSTANT = 18;
  }
  // the kind of this type
  required Kind kind = 1;