ianmcook commented on code in PR #39081:
URL: https://github.com/apache/arrow/pull/39081#discussion_r1448145304


##########
http/examples/get/client.cpp:
##########


Review Comment:
   Hmm, I'm able to add this at the very bottom of `main` in your first 
example,  and it works without error:
   ```cpp
     std::vector<std::shared_ptr<arrow::RecordBatch>> record_batches;
     record_batches = collect_listener->record_batches();
     std::cout << "Schema: " << std::endl << 
record_batches[0]->schema()->ToString() << std::endl;
     std::cout << "RecordBatch: " << std::endl << record_batches[0]->ToString() 
<< std::endl;
   ```



-- 
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]

Reply via email to