ViggoC commented on issue #44642:
URL: https://github.com/apache/arrow/issues/44642#issuecomment-2457021483
IMHO, The only side effect of removing `viewBuffer.setZero` is that padding
data is no longer 0, Right?
```
/*
* Variable Width View Vector comprises the following format
*
* Short strings, length <= 12
* | Bytes 0-3 | Bytes 4-15 |
* |------------|---------------------------------------|
* | length | data (padded with 0) |
* |------------|---------------------------------------|
*
* Long strings, length > 12
* | Bytes 0-3 | Bytes 4-7 | Bytes 8-11 | Bytes 12-15 |
* |------------|------------|------------|-------------|
* | length | prefix | buf.index | offset |
* |------------|------------|------------|-------------|
*
* */
```
--
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]