zeroshade commented on issue #37976: URL: https://github.com/apache/arrow/issues/37976#issuecomment-1743898252
@polestar1988 Depending on the logic you're using you might be able to simply use `array.NewTableReader` to iterate over chunks of the table and apply your logic or use the `compute` package with the table or slice of records. As for showing the data to the user, please see the example in the docs [here](https://pkg.go.dev/github.com/apache/arrow/go/[email protected]/arrow#example-package-Table) which demonstrates one possible way of doing it. `arrow.Table` also has its own `String()` method which would let you just print the whole table as one output, alternately you could also use JSON/CSV output if desired which would let you write the data to a human readable file, etc. There's several ways you could go about it, but if you *really* want to concatenate it all into a single record, then please try the suggestions from my previous response and let me know if everything works for you. -- 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]
