Github user viirya commented on the issue:
https://github.com/apache/spark/pull/21312
Not sure why, but previously calling `ListVector.clear`, I must change the
reset order to reset element writer first to pass the test:
```scala
override def reset(): Unit = {
+ elementWriter.reset()
super.reset()
- elementWriter.reset()
}
```
Now with manual reset, this order doesn't affect test result anymore. I
respect original order and restore it back.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]