scovich commented on PR #8392:
URL: https://github.com/apache/arrow-rs/pull/8392#issuecomment-3314082285
The offending array is below.
I notice a couple weird things:
1. Looking at the test itself, the top-level null mask should only have one
NULL, at index 6. I don't know how index 5, 8, and 9 are also NULL??
2. The null masks for score are also weird.
<details>
```
validity: [
valid,
valid,
valid,
valid,
null,
null,
valid,
null,
null,
]
score: StructArray
-- validity:
[
valid,
valid,
null,
valid,
null,
null,
null,
null,
valid,
]
[
-- child 0: "value" (BinaryView)
BinaryViewArray
[
null,
null,
null,
[45, 110, 105, 110, 101, 116, 121, 45, 102, 105, 118, 101],
null,
null,
null,
null,
null,
]
-- child 1: "typed_value" (Float64)
PrimitiveArray<Float64>
[
95.5,
87.2,
null,
null,
null,
null,
null,
null,
66.67,
]
]
age: StructArray
-- validity:
[
valid,
valid,
valid,
valid,
null,
null,
null,
null,
null,
]
[
-- child 0: "value" (BinaryView)
BinaryViewArray
[
null,
null,
null,
[25, 116, 104, 105, 114, 116, 121],
null,
null,
null,
null,
null,
]
-- child 1: "typed_value" (Int64)
PrimitiveArray<Int64>
[
30,
25,
35,
null,
null,
null,
null,
null,
null,
]
]
```
</details>
--
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]