resetius opened a new pull request, #35006:
URL: https://github.com/apache/arrow/pull/35006

   lost end of stream when reading in form of
   ```
       auto input = std::shared_ptr<arrow::io::InputStream>(new 
arrow::io::StdinStream());
       arrow::Result<int64_t> res;
       char buffer[16];
       while ((res = input->Read(sizeof(buffer), buffer)) != 0) {
           std::cerr << std::string_view(buffer, *res);
       }
   ```
   the PR fix the issue


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