Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions extensions/iceberg/s3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@ dependencies {
// but we need to be able to compile against it to implement AwsClientFactory
compileOnly libs.awssdk.dynamodb

// We don't want to explicitly pull in dependencies for KMS (there doesn't seem to be anything in Iceberg that
// actually calls it?), but we need to be able to compile against it to implement AwsClientFactory
compileOnly libs.awssdk.kms
// Needed for AwsClientFactory
implementation libs.awssdk.kms
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needed for new KMS related properties added in apache/iceberg#13136


implementation libs.guava

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public static Table partitionStats(org.apache.iceberg.Table table, Snapshot snap
.add("PositionDeleteFileCount", int.class, PartitionStats::positionDeleteFileCount)
.add("EqualityDeleteRecordCount", long.class, PartitionStats::equalityDeleteRecordCount)
.add("EqualityDeleteFileCount", int.class, PartitionStats::equalityDeleteFileCount)
.add("TotalRecordCount", long.class, PartitionStats::totalRecordCount)
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.add("TotalRecordCount", long.class, PartitionStats::totalRecords)
.add("LastUpdatedAt", Instant.class, Explore::lastUpdatedAt)
.add("LastUpdatedSnapshotId", long.class, PartitionStats::lastUpdatedSnapshotId)
.view(partitionStats);
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ gwt = "2.12.2"
gwtJetty = "9.4.44.v20210927"
hadoop = "3.4.1"
hdrhistogram = "2.2.2"
iceberg = "1.9.2"
iceberg = "1.10.0"
immutables = "2.10.1"
jackson = "2.19.2"
jakarta-servlet = "6.0.0"
Expand Down
Loading