This is an automated email from the ASF dual-hosted git repository.
omalley pushed a change to branch branch-1.5
in repository https://gitbox.apache.org/repos/asf/orc.git.
from 6456a1d ORC-576: Improve the license file for third party code.
new 33f9d86 orc-578 fix schema conversions with proleptic dates/times.
new ea20218 orc tail statistics
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
LICENSE | 34 +
java/core/pom.xml | 4 +
.../src/java/org/apache/orc/StripeStatistics.java | 18 +-
.../org/apache/orc/impl/ColumnStatisticsImpl.java | 8 +-
.../apache/orc/impl/ConvertTreeReaderFactory.java | 903 +++++++--------------
.../src/java/org/apache/orc/impl/DateUtils.java | 206 +++--
.../core/src/java/org/apache/orc/impl/OrcTail.java | 6 +-
.../src/java/org/apache/orc/impl/ReaderImpl.java | 3 +-
.../java/org/apache/orc/impl/RecordReaderImpl.java | 13 +-
.../org/apache/orc/impl/SerializationUtils.java | 29 +
.../src/java/org/apache/orc/impl/WriterImpl.java | 4 +-
.../threeten/extra/chrono/HybridChronology.java | 455 +++++++++++
.../java/org/threeten/extra/chrono/HybridDate.java | 537 ++++++++++++
.../org/apache/orc/TestProlepticConversions.java | 186 +++++
.../test/org/apache/orc/impl/TestDateUtils.java | 60 ++
.../org/apache/orc/impl/TestRecordReaderImpl.java | 4 +-
.../org/apache/orc/impl/TestSchemaEvolution.java | 680 +++++++++++++++-
java/pom.xml | 5 +
.../test/resources/orc-file-dump-bloomfilter.out | 2 +-
.../test/resources/orc-file-dump-bloomfilter2.out | 2 +-
.../orc-file-dump-dictionary-threshold.out | 2 +-
java/tools/src/test/resources/orc-file-dump.json | 2 +-
java/tools/src/test/resources/orc-file-dump.out | 2 +-
.../tools/src/test/resources/orc-file-has-null.out | 2 +-
24 files changed, 2433 insertions(+), 734 deletions(-)
create mode 100644
java/core/src/java/org/threeten/extra/chrono/HybridChronology.java
create mode 100644 java/core/src/java/org/threeten/extra/chrono/HybridDate.java
create mode 100644 java/core/src/test/org/apache/orc/impl/TestDateUtils.java