Skip to content

Commit ef6fb43

Browse files
authored
chore: Bump the Java integration test to 1.10.0 (#1701)
## Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> - Closes #. ## What changes are included in this PR? <!-- Provide a summary of the modifications in this PR. List the main changes such as new features, bug fixes, refactoring, or any other updates. --> ## Are these changes tested? <!-- Specify what test covers (unit test, integration test, etc.). If tests are not included in your PR, please explain why (for example, are they covered by existing tests)? -->
1 parent fea7f1d commit ef6fb43

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/integration_tests/testdata/spark/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ WORKDIR ${SPARK_HOME}
2929

3030
ENV SPARK_VERSION=3.5.6
3131
ENV ICEBERG_SPARK_RUNTIME_VERSION=3.5_2.12
32-
ENV ICEBERG_VERSION=1.6.0
32+
ENV ICEBERG_VERSION=1.10.0
3333

3434
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 \
3535
&& tar xzf spark-${SPARK_VERSION}-bin-hadoop3.tgz --directory /opt/spark --strip-components 1 \

crates/integration_tests/tests/shared_tests/read_positional_deletes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ async fn test_read_table_with_positional_deletes() {
5353

5454
// Scan plan phase should include delete files in file plan
5555
// when with_delete_file_processing_enabled == true
56-
assert_eq!(plan[0].deletes.len(), 2);
56+
assert_eq!(plan[0].deletes.len(), 1);
5757

5858
// we should see two rows deleted, returning 10 rows instead of 12
5959
let batch_stream = scan.to_arrow().await.unwrap();

0 commit comments

Comments
 (0)