exmy commented on issue #6923:
URL:
https://github.com/apache/incubator-gluten/issues/6923#issuecomment-2296428432
endless loop in here: scala.collection.mutable.ArrayBuilder$ofByte.ensureSize
``` scala
private def ensureSize(size: Int) {
if (capacity < size || capacity == 0) {
var newsize = if (capacity == 0) 16 else capacity * 2
while (newsize < size) newsize *= 2 // endless loop when newSize * 2 is
greater than int max_value.
resize(newsize)
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]