Github user ueshin commented on a diff in the pull request:
https://github.com/apache/spark/pull/20277#discussion_r162853774
--- Diff:
sql/core/src/main/java/org/apache/spark/sql/vectorized/ArrowColumnVector.java
---
@@ -55,164 +43,82 @@ public void close() {
if (childColumns != null) {
for (int i = 0; i < childColumns.length; i++) {
childColumns[i].close();
+ childColumns[i] = null;
}
}
--- End diff --
We need to do `childColumns = null` after the for loop, otherwise
`NullPointerException` will be thrown if `close()` is called twice?
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]