Skip to content

Commit dbfefb0

Browse files
authored
Bump Apache Spark to 3.5.4 (apache#11731)
1 parent c0d6d42 commit dbfefb0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ slf4j = "2.0.16"
8282
snowflake-jdbc = "3.20.0"
8383
spark-hive33 = "3.3.4"
8484
spark-hive34 = "3.4.4"
85-
spark-hive35 = "3.5.2"
85+
spark-hive35 = "3.5.4"
8686
sqlite-jdbc = "3.47.1.0"
8787
testcontainers = "1.20.4"
8888
tez010 = "0.10.4"

spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/data/vectorized/IcebergArrowColumnVector.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ public void close() {
5959
accessor.close();
6060
}
6161

62+
public void closeIfFreeable() {
63+
// If a column vector is writable or constant, it should override this method and do nothing.
64+
// See more details at SPARK-50235, SPARK-50463 (Fixed in Spark 3.5.4)
65+
}
66+
6267
@Override
6368
public boolean hasNull() {
6469
return nullabilityHolder.hasNulls();

0 commit comments

Comments
 (0)