From 6d572f57f4768947a7dcd4eb430775c1c6d1b845 Mon Sep 17 00:00:00 2001 From: Fokko Driesprong Date: Mon, 22 Sep 2025 21:35:50 +0200 Subject: [PATCH 1/2] chorse: Bump the Java integration test to 1.10.0 --- crates/integration_tests/testdata/spark/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/integration_tests/testdata/spark/Dockerfile b/crates/integration_tests/testdata/spark/Dockerfile index 420edb2318..339051bfc1 100644 --- a/crates/integration_tests/testdata/spark/Dockerfile +++ b/crates/integration_tests/testdata/spark/Dockerfile @@ -29,7 +29,7 @@ WORKDIR ${SPARK_HOME} ENV SPARK_VERSION=3.5.6 ENV ICEBERG_SPARK_RUNTIME_VERSION=3.5_2.12 -ENV ICEBERG_VERSION=1.6.0 +ENV ICEBERG_VERSION=1.10.0 RUN curl --retry 5 -s -C - https://dlcdn.apache.org/spark/spark-${SPARK_VERSION}/spark-${SPARK_VERSION}-bin-hadoop3.tgz -o spark-${SPARK_VERSION}-bin-hadoop3.tgz \ && tar xzf spark-${SPARK_VERSION}-bin-hadoop3.tgz --directory /opt/spark --strip-components 1 \ From b2104bd6c51d5ecbdd98d38f992d86edc3c451bf Mon Sep 17 00:00:00 2001 From: Fokko Driesprong Date: Mon, 22 Sep 2025 22:06:12 +0200 Subject: [PATCH 2/2] The deletes are combined --- .../tests/shared_tests/read_positional_deletes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/integration_tests/tests/shared_tests/read_positional_deletes.rs b/crates/integration_tests/tests/shared_tests/read_positional_deletes.rs index 565f8ba427..7641810073 100644 --- a/crates/integration_tests/tests/shared_tests/read_positional_deletes.rs +++ b/crates/integration_tests/tests/shared_tests/read_positional_deletes.rs @@ -53,7 +53,7 @@ async fn test_read_table_with_positional_deletes() { // Scan plan phase should include delete files in file plan // when with_delete_file_processing_enabled == true - assert_eq!(plan[0].deletes.len(), 2); + assert_eq!(plan[0].deletes.len(), 1); // we should see two rows deleted, returning 10 rows instead of 12 let batch_stream = scan.to_arrow().await.unwrap();