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

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

commit 78a3c18c7c6a00b24ef6229f3e35eaefeb0e0bda
Author: Piotr Findeisen <[email protected]>
AuthorDate: Thu Aug 13 22:21:34 2020 +0200

    Fix Julian/Gregorian cutoff in a comment
    
    Fixes #538
    
    Signed-off-by: Owen O'Malley <[email protected]>
---
 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 24a62a4..e53c1c4 100644
--- a/proto/orc_proto.proto
+++ b/proto/orc_proto.proto
@@ -196,8 +196,7 @@ message Metadata {
 
 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;

Reply via email to