You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by om...@apache.org on 2020/08/21 18:02:37 UTC

[orc] branch branch-1.6 updated: Fix Julian/Gregorian cutoff in a comment

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

omalley pushed a commit to branch branch-1.6
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-1.6 by this push:
     new a426381  Fix Julian/Gregorian cutoff in a comment
a426381 is described below

commit a426381a05e2e5bdcaeb1e729be75eda8de44fe4
Author: Piotr Findeisen <pi...@gmail.com>
AuthorDate: Thu Aug 13 22:21:34 2020 +0200

    Fix Julian/Gregorian cutoff in a comment
    
    Fixes #538
    
    Signed-off-by: Owen O'Malley <om...@apache.org>
---
 proto/orc_proto.proto | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/proto/orc_proto.proto b/proto/orc_proto.proto
index 170f077..b552554 100644
--- a/proto/orc_proto.proto
+++ b/proto/orc_proto.proto
@@ -342,8 +342,7 @@ message Encryption {
 
 enum CalendarKind {
   UNKNOWN_CALENDAR = 0;
-   // The Java default calendar changes from Julian to Gregorian
-   // in 1583.
+   // A hybrid Julian/Gregorian calendar with a cutover point in October 1582.
   JULIAN_GREGORIAN = 1;
   // A calendar that extends the Gregorian calendar back forever.
   PROLEPTIC_GREGORIAN = 2;