sl2902 commented on issue #34370:
URL: https://github.com/apache/arrow/issues/34370#issuecomment-1446835382
This is an update:
I added a print statement inside the datasets - table.py module to check the
schema being generated, and I noticed that it is incorrect; this is how the
affected column appears to be defined:
```
names: struct<url: list<item: string>, score: list<item: double>>
child 0, url: list<item: string>
child 0, item: string
child 1, score: list<item: double>
child 0, item: double
```
When it should have been
```
names: list<item: struct<url: string, score: double>>
child 0, item: struct<url: string, score: double>
child 0, url: string
child 1, score: double
```
--
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]