This is an automated email from the ASF dual-hosted git repository.
gangwu pushed a change to branch fd-dont-run-tests
in repository https://gitbox.apache.org/repos/asf/parquet-java.git
from a8a808887 Don't run all the tests on a release
add bc4e5b416 GH-2952: Add maven wrapper (#2953)
add 3ac860e11 GH-2994: Optimize string to binary conversion in
AvroWriteSupport (#2995)
add 3b5fb4b15 GH-2988: Supports disabling statistics for specific columns
(#2989)
add fafd9b033 GH-2986: Fails the file writing when footer size exceeds int
max value (#2987)
add aec7bc64d MINOR: ParquetRewriter must close opened reader/stream
(#3002)
add 08a4e7e62 PARQUET-2430: Add parquet joiner v2 (#1335)
add 2b36e99ba GH-3009: Bump zstd-jni.version from 1.5.6-3 to 1.5.6-6
(#3010)
add ac6a5a005 GH-2962: Set dictionary_page_offset even when encoding_stats
are missing (#3012)
add fcfd427a1 GH-3007: Ensure version specific Jackson classes are shaded
(#3017)
add 0c8b757a8 GH-3016: Do not use dependency-reduced pom for attached
shaded artifact (#3015)
add dc1fbf364 Merge branch 'master' into fd-dont-run-tests
No new revisions were added by this update.
Summary of changes:
.github/workflows/ci-hadoop2.yml | 8 +-
.github/workflows/ci-hadoop3.yml | 8 +-
.github/workflows/vector-plugins.yml | 8 +-
.../wrapper/maven-wrapper.properties | 7 +-
README.md | 12 +-
dev/finalize-release | 8 +-
dev/prepare-release.sh | 10 +-
mvnw | 259 +++++++++++
mvnw.cmd | 149 +++++++
.../org/apache/parquet/avro/AvroWriteSupport.java | 4 +-
parquet-benchmarks/README.md | 10 +-
parquet-benchmarks/run.sh | 2 +-
.../parquet/benchmarks/FilteringBenchmarks.java | 2 +-
.../benchmarks/NestedNullWritingBenchmarks.java | 2 +-
parquet-cli/README.md | 4 +-
parquet-cli/pom.xml | 1 +
.../apache/parquet/column/ParquetProperties.java | 22 +
.../parquet/column/impl/ColumnValueCollector.java | 6 +-
.../parquet/column/statistics/NoopStatistics.java | 130 ++++++
.../parquet/column/statistics/Statistics.java | 9 +
.../parquet/column/statistics/TestStatistics.java | 27 ++
.../parquet/ParquetSizeOverflowException.java | 15 +-
.../format/converter/ParquetMetadataConverter.java | 5 +-
.../apache/parquet/hadoop/ParquetFileWriter.java | 43 +-
.../org/apache/parquet/hadoop/ParquetWriter.java | 12 +
.../parquet/hadoop/rewrite/ParquetRewriter.java | 486 +++++++++++++-------
.../parquet/hadoop/rewrite/RewriteOptions.java | 208 ++++++++-
.../converter/TestParquetMetadataConverter.java | 33 +-
.../hadoop/rewrite/ParquetRewriterTest.java | 489 +++++++++++++++------
.../parquet/statistics/DataGenerationContext.java | 43 +-
.../apache/parquet/statistics/TestStatistics.java | 122 ++++-
parquet-jackson/README.md | 6 +-
parquet-jackson/pom.xml | 20 +
pom.xml | 3 +-
34 files changed, 1760 insertions(+), 413 deletions(-)
copy parquet-generator/src/main/resources/parquet-version.properties =>
.mvn/wrapper/maven-wrapper.properties (82%)
create mode 100755 mvnw
create mode 100644 mvnw.cmd
create mode 100644
parquet-column/src/main/java/org/apache/parquet/column/statistics/NoopStatistics.java
copy
parquet-column/src/main/java/org/apache/parquet/io/InvalidFileOffsetException.java
=>
parquet-common/src/main/java/org/apache/parquet/ParquetSizeOverflowException.java
(76%)