>From Michael Blow <[email protected]>: Michael Blow has submitted this change. ( https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/21660?usp=email )
Change subject: [NO ISSUE][MISC] Advance parquet to 1.18.0 ...................................................................... [NO ISSUE][MISC] Advance parquet to 1.18.0 - parquet: 1.17.1 → 1.18.0 The three transitives pinned against parquet do not move: 1.18.0 asks for aircompressor 2.0.3, zstd-jni 1.5.7-11 and commons-pool 1.6, which is what they already read. jts-core and snappy-java are likewise unchanged. 1.18.0 relocates RowRanges from org.apache.parquet.internal.filter2 .columnindex to org.apache.parquet.filter2.columnindex, leaving the internal class as an empty subclass of it, and so changes the return type of ColumnIndexFilter.calculateRowRanges. It also replaces the protected LittleEndianDataInputStream field on PlainValuesReader with a ByteBuffer and drops the shaded fastutil double and float collections from parquet-column. Nothing outside parquet itself reaches for any of them. AwsS3ExternalDatasetTest passes in full, 204 cases, 53 of them parquet. Change-Id: If62e5a13c857a0a83a7a992e77735a42f69a95a3 Ext-ref: MB-73268 Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/21660 Tested-by: Jenkins <[email protected]> Integration-Tests: Jenkins <[email protected]> Reviewed-by: Michael Blow <[email protected]> --- M asterixdb/pom.xml 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Jenkins: Verified; Verified Michael Blow: Looks good to me, approved diff --git a/asterixdb/pom.xml b/asterixdb/pom.xml index 9896860..8274e61 100644 --- a/asterixdb/pom.xml +++ b/asterixdb/pom.xml @@ -101,7 +101,7 @@ <jacoco.version>0.7.6.201602180812</jacoco.version> <log4j.version>2.26.1</log4j.version> <avro.version>1.12.2</avro.version> - <parquet.version>1.17.1</parquet.version> <!-- NOTICE: please update transitives from parquet below on any change --> + <parquet.version>1.18.0</parquet.version> <!-- NOTICE: please update transitives from parquet below on any change --> <hadoop-awsjavasdk.version>1.12.797</hadoop-awsjavasdk.version> <awsjavasdk.version>2.54.9</awsjavasdk.version> -- To view, visit https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/21660?usp=email To unsubscribe, or for help writing mail filters, visit https://asterix-gerrit.ics.uci.edu/settings?usp=email Gerrit-MessageType: merged Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Change-Id: If62e5a13c857a0a83a7a992e77735a42f69a95a3 Gerrit-Change-Number: 21660 Gerrit-PatchSet: 2 Gerrit-Owner: Michael Blow <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Michael Blow <[email protected]>
