comphead commented on issue #1681:
URL:
https://github.com/apache/datafusion-comet/issues/1681#issuecomment-2829102935
another test to reproduce
```
test("native reader - read a STRUCT subfield from ARRAY of STRUCTS") {
testSingleLineQuery(
"""
| select array(str0, str1) c0 from
| (
| select named_struct('a', 1, 'b', 'n') str0, named_struct('a', 2,
'b', 'w') str1
| )
|""".stripMargin,
"select c0[0].b col0 from tbl")
}
```
interesting that referring to first column which is `a` returns result
correctly, but `b` does not
--
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]