This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/gradle/parquet-1.14.3
in repository https://gitbox.apache.org/repos/asf/iceberg.git
discard b9f6809329 Build: Bump parquet from 1.13.1 to 1.14.3
add 745e819f37 AWS: Make sure overridden configurations are applied
(#11274)
add 5dde680797 Build: Bump com.google.cloud:libraries-bom from 26.47.0 to
26.48.0 (#11271)
add 3220fad982 Core: Fix UnicodeUtil#truncateStringMax returns malformed
string. (#11161)
add f0e4fd2f55 Core: Add internal Avro reader (#11108)
add 208ab20dc9 Arrow: Remove unused readers (#11276)
add 67dc9e58cd Spec: Add v3 types and type promotion (#10955)
add d7f668ab89 Build: Bump mkdocs-material from 9.5.38 to 9.5.39 (#11272)
add 5fa3bbeec2 Build: Bump com.google.errorprone:error_prone_annotations
(#11270)
add 410477fd9e Build: Bump junit-platform from 1.11.1 to 1.11.2 (#11266)
add 28265cd7c0 Build: Bump org.testcontainers:testcontainers from 1.20.1
to 1.20.2 (#11265)
add d93677a3f3 Build: Bump io.netty:netty-buffer from 4.1.113.Final to
4.1.114.Final (#11269)
add 7e5caf1c6a Build: Bump software.amazon.awssdk:bom from 2.28.11 to
2.28.16 (#11268)
add 337d05b8d5 Build: Bump jackson-bom from 2.14.2 to 2.18.0 (#11226)
add d3e015822c Build: Bump datamodel-code-generator from 0.25.9 to 0.26.1
(#11234)
add 0a1a6665c1 Build: Bump
software.amazon.s3.accessgrants:aws-s3-accessgrants-java-plugin (#9705)
add 7a7d150bbc Build: Bump net.snowflake:snowflake-jdbc from 3.18.0 to
3.19.0 (#11057)
add 1d3d3e5db7 Build: Bump parquet from 1.13.1 to 1.14.3
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (b9f6809329)
\
N -- N -- N refs/heads/dependabot/gradle/parquet-1.14.3
(1d3d3e5db7)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../java/org/apache/iceberg/types/Comparators.java | 6 +-
.../java/org/apache/iceberg/util/UnicodeUtil.java | 24 +-
...orizedDictionaryEncodedParquetValuesReader.java | 38 ----
.../VectorizedParquetDefinitionLevelReader.java | 108 ---------
.../apache/iceberg/aws/s3/S3FileIOProperties.java | 12 +-
.../apache/iceberg/aws/TestS3FileIOProperties.java | 7 +-
.../java/org/apache/iceberg/ManifestReader.java | 26 ++-
.../org/apache/iceberg/avro/GenericAvroReader.java | 64 +-----
.../org/apache/iceberg/avro/InternalReader.java | 252 +++++++++++++++++++++
.../org/apache/iceberg/avro/InternalReaders.java | 110 +++++++++
.../java/org/apache/iceberg/avro/ValueReaders.java | 98 ++++++++
.../org/apache/iceberg/TestManifestReader.java | 3 +-
.../org/apache/iceberg/TestMetricsTruncation.java | 34 ++-
format/spec.md | 49 +++-
gradle/libs.versions.toml | 20 +-
open-api/requirements.txt | 2 +-
site/requirements.txt | 2 +-
17 files changed, 608 insertions(+), 247 deletions(-)
create mode 100644
core/src/main/java/org/apache/iceberg/avro/InternalReader.java
create mode 100644
core/src/main/java/org/apache/iceberg/avro/InternalReaders.java