Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
checkstyle = "10.25.0"
hadoop = "3.4.2"
hive = "3.1.3"
iceberg = "1.9.2" # Ensure to update the iceberg version in regtests to keep regtests up-to-date
iceberg = "1.10.0" # Ensure to update the iceberg version in regtests to keep regtests up-to-date
quarkus = "3.26.3"
immutables = "2.11.3"
jmh = "1.37"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -471,9 +471,9 @@ public void testIcebergRegisterTableInExternalCatalog() throws IOException {
TableMetadata.buildFromEmpty()
.setLocation(location)
.assignUUID()
.addSchema(new Schema(Types.NestedField.required(1, "col1", Types.StringType.get())))
.addPartitionSpec(PartitionSpec.unpartitioned())
.addSortOrder(SortOrder.unsorted())
.addSchema(new Schema(Types.NestedField.required(1, "col1", Types.StringType.get())))
.build();
TableMetadataParser.write(tableMetadata, fileIo.newOutputFile(metadataLocation));

Expand Down Expand Up @@ -514,9 +514,9 @@ public void testIcebergUpdateTableInExternalCatalog() throws IOException {
TableMetadata.buildFromEmpty()
.setLocation(location)
.assignUUID()
.addPartitionSpec(PartitionSpec.unpartitioned())
.addSortOrder(SortOrder.unsorted())
.addSchema(new Schema(col1))
.addPartitionSpec(PartitionSpec.unpartitioned())
.build();
TableMetadataParser.write(tableMetadata, fileIo.newOutputFile(metadataLocation));

Expand Down Expand Up @@ -562,9 +562,9 @@ public void testIcebergDropTableInExternalCatalog() throws IOException {
TableMetadata.buildFromEmpty()
.setLocation(location)
.assignUUID()
.addSchema(new Schema(Types.NestedField.required(1, "col1", Types.StringType.get())))
.addPartitionSpec(PartitionSpec.unpartitioned())
.addSortOrder(SortOrder.unsorted())
.addSchema(new Schema(Types.NestedField.required(1, "col1", Types.StringType.get())))
.build();
TableMetadataParser.write(tableMetadata, fileIo.newOutputFile(metadataLocation));

Expand Down
1 change: 1 addition & 0 deletions polaris-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ dependencies {
implementation("software.amazon.awssdk:sts")
implementation("software.amazon.awssdk:iam-policy-builder")
implementation("software.amazon.awssdk:s3")
implementation("software.amazon.awssdk:kms")

implementation("org.apache.iceberg:iceberg-azure")
implementation(platform(libs.azuresdk.bom))
Expand Down
2 changes: 2 additions & 0 deletions runtime/service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ dependencies {
implementation("software.amazon.awssdk:sts")
implementation("software.amazon.awssdk:iam-policy-builder")
implementation("software.amazon.awssdk:s3")
implementation("software.amazon.awssdk:kms")
implementation("software.amazon.awssdk:cloudwatchlogs")
implementation("software.amazon.awssdk:apache-client") {
exclude("commons-logging", "commons-logging")
Expand Down Expand Up @@ -170,6 +171,7 @@ dependencies {
testFixturesImplementation("software.amazon.awssdk:sts")
testFixturesImplementation("software.amazon.awssdk:iam-policy-builder")
testFixturesImplementation("software.amazon.awssdk:s3")
testFixturesImplementation("software.amazon.awssdk:kms")

testFixturesImplementation(platform(libs.azuresdk.bom))
testFixturesImplementation("com.azure:azure-core")
Expand Down
1 change: 1 addition & 0 deletions tools/minio-testcontainer/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ dependencies {

api(platform(libs.awssdk.bom))
api("software.amazon.awssdk:s3")
api("software.amazon.awssdk:kms")

implementation(project(":polaris-container-spec-helper"))
implementation("software.amazon.awssdk:url-connection-client")
Expand Down