You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2018/11/19 16:27:38 UTC

[arrow] branch master updated: ARROW-3835: [C++] Add missing arrow::io::CompressedOutputStream::raw() implementation

This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new c07165d  ARROW-3835: [C++] Add missing arrow::io::CompressedOutputStream::raw() implementation
c07165d is described below

commit c07165d4cd4bf419c565bb321a4c94a8694b4bf8
Author: Kouhei Sutou <ko...@clear-code.com>
AuthorDate: Mon Nov 19 11:27:19 2018 -0500

    ARROW-3835: [C++] Add missing arrow::io::CompressedOutputStream::raw() implementation
    
    Author: Kouhei Sutou <ko...@clear-code.com>
    
    Closes #2990 from kou/cpp-add-missing-compressed-output-stream-raw and squashes the following commits:
    
    783b9bd21 <Kouhei Sutou>  Add missing arrow::io::CompressedOutputStream::raw() implementation
---
 cpp/src/arrow/io/compressed.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cpp/src/arrow/io/compressed.cc b/cpp/src/arrow/io/compressed.cc
index 558d09b..e5fd6b4 100644
--- a/cpp/src/arrow/io/compressed.cc
+++ b/cpp/src/arrow/io/compressed.cc
@@ -221,6 +221,8 @@ Status CompressedOutputStream::Write(const void* data, int64_t nbytes) {
 
 Status CompressedOutputStream::Flush() { return impl_->Flush(); }
 
+std::shared_ptr<OutputStream> CompressedOutputStream::raw() const { return impl_->raw(); }
+
 // ----------------------------------------------------------------------
 // CompressedInputStream implementation