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 <[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 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;