polestar1988 commented on issue #37976:
URL: https://github.com/apache/arrow/issues/37976#issuecomment-1743683024
@zeroshade Thanks so much for your response, Just to make sure, when I read
records in the client side using:
```
for {
rec, err := reader.Read()
if err != nil {
if err == io.EOF {
// End of data stream, break the loop
break
}
}
defer rec.Release()
}
```
I get each record like this:
```
record:
schema:
fields: 3
- first_name: type=utf8, nullable
- last_name: type=utf8, nullable
- age: type=utf8, nullable
rows: 9
col[0][first_name]: ["John" "John" "John" "John" "John" "John" "John"
"John" "John"]
col[1][last_name]: ["Doe" "Doe" "Doe" "Doe" "Doe" "Doe" "Doe" "Doe" "Doe"]
col[2][age]: ["30" "30" "30" "30" "30" "30" "30" "30" "30"]
```
Is there any way to concatenate record to one record or it also should be
done by writing a function to do concatenation?
--
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]