mathyingzhou commented on a change in pull request #8648: URL: https://github.com/apache/arrow/pull/8648#discussion_r594462966
########## File path: cpp/src/arrow/adapters/orc/adapter.cc ########## @@ -473,6 +473,105 @@ int64_t ORCFileReader::NumberOfStripes() { return impl_->NumberOfStripes(); } int64_t ORCFileReader::NumberOfRows() { return impl_->NumberOfRows(); } +class ArrowOutputStream : public liborc::OutputStream { + public: + explicit ArrowOutputStream(const std::shared_ptr<io::OutputStream>& output_stream) + : output_stream_(output_stream), length_(0) {} + + uint64_t getLength() const override { return length_; } + + uint64_t getNaturalWriteSize() const override { return ORC_NATURAL_WRITE_SIZE; } + + void write(const void* buf, size_t length) override { + ORC_THROW_NOT_OK(output_stream_->Write(buf, static_cast<int64_t>(length))); + length_ += static_cast<int64_t>(length); + } + + const std::string& getName() const override { + static const std::string filename("ArrowOutputFile"); Review comment: Yes. In fact this is really just to make sure all virtual methods of the parent class are implemented. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org