mapleFU opened a new issue, #43408:
URL: https://github.com/apache/arrow/issues/43408

   ### Describe the enhancement requested
   
   ```c++
   class ARROW_EXPORT InputStream : virtual public FileInterface, virtual 
public Readable {
    public:
     /// \brief Advance or skip stream indicated number of bytes
     /// \param[in] nbytes the number to move forward
     /// \return Status
     Status Advance(int64_t nbytes);
   ```
   
   ```c++
   Status InputStream::Advance(int64_t nbytes) { return Read(nbytes).status(); }
   ```
   
   `Advance` is always call read, since it's not a virtual function
   
   ### Component(s)
   
   C++


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