Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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 @@ -82,7 +82,7 @@ slf4j = "2.0.16"
snowflake-jdbc = "3.20.0"
spark-hive33 = "3.3.4"
spark-hive34 = "3.4.4"
spark-hive35 = "3.5.2"
spark-hive35 = "3.5.4"
sqlite-jdbc = "3.47.1.0"
testcontainers = "1.20.4"
tez010 = "0.10.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ public void close() {
accessor.close();
}

@Override
public void closeIfFreeable() {
// If a column vector is writable or constant, it should override this method and do nothing.
// See more details at SPARK-50235, SPARK-50463 (Fixed in Spark 3.5.4)
}

@Override
public boolean hasNull() {
return nullabilityHolder.hasNulls();
Expand Down