You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by bk...@apache.org on 2021/02/26 02:18:56 UTC

[arrow] branch master updated (9a9baf6 -> 59f9d20)

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

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


    from 9a9baf6  ARROW-2229: [C++][Python] Add WriteCsv functionality.
     add 59f9d20  ARROW-10420: [C++] Refactor io and filesystem APIs to take an IOContext

No new revisions were added by this update.

Summary of changes:
 c_glib/arrow-glib/reader.cpp              |  3 +-
 cpp/examples/minimal_build/example.cc     |  2 +-
 cpp/src/arrow/csv/reader.cc               | 54 +++++++++++++-------
 cpp/src/arrow/csv/reader.h                |  8 ++-
 cpp/src/arrow/csv/reader_test.cc          | 11 ++--
 cpp/src/arrow/dataset/discovery.h         |  3 +-
 cpp/src/arrow/dataset/file_base.cc        |  9 ++++
 cpp/src/arrow/dataset/file_base.h         | 12 +++--
 cpp/src/arrow/dataset/file_ipc.cc         | 10 ++--
 cpp/src/arrow/dataset/file_ipc.h          | 15 +++---
 cpp/src/arrow/dataset/file_parquet.cc     | 22 ++++----
 cpp/src/arrow/dataset/file_parquet.h      |  9 ++--
 cpp/src/arrow/filesystem/filesystem.cc    | 83 ++++++++++++++++++++-----------
 cpp/src/arrow/filesystem/filesystem.h     | 36 +++++++++++++-
 cpp/src/arrow/filesystem/hdfs.cc          | 19 ++++---
 cpp/src/arrow/filesystem/hdfs.h           |  5 +-
 cpp/src/arrow/filesystem/localfs.cc       | 19 ++++---
 cpp/src/arrow/filesystem/localfs.h        |  5 +-
 cpp/src/arrow/filesystem/localfs_test.cc  |  9 +++-
 cpp/src/arrow/filesystem/mockfs.cc        | 67 +++++++++++++++++--------
 cpp/src/arrow/filesystem/mockfs.h         |  8 +--
 cpp/src/arrow/filesystem/s3fs.cc          | 47 +++++++++++------
 cpp/src/arrow/filesystem/s3fs.h           |  5 +-
 cpp/src/arrow/filesystem/util_internal.cc |  5 +-
 cpp/src/arrow/filesystem/util_internal.h  |  3 +-
 cpp/src/arrow/io/caching.cc               |  4 +-
 cpp/src/arrow/io/caching.h                |  4 +-
 cpp/src/arrow/io/file.cc                  |  2 +-
 cpp/src/arrow/io/file.h                   |  2 +-
 cpp/src/arrow/io/hdfs.cc                  | 26 +++++++---
 cpp/src/arrow/io/hdfs.h                   | 11 ++--
 cpp/src/arrow/io/interfaces.cc            | 34 +++++++++----
 cpp/src/arrow/io/interfaces.h             | 57 +++++++++++++++++----
 cpp/src/arrow/io/memory.cc                |  2 +-
 cpp/src/arrow/io/memory.h                 |  2 +-
 cpp/src/arrow/io/type_fwd.h               |  8 +++
 cpp/src/arrow/ipc/type_fwd.h              |  3 ++
 cpp/src/arrow/util/parallel.h             | 11 ++--
 cpp/src/parquet/arrow/reader.cc           |  4 +-
 cpp/src/parquet/file_reader.cc            |  4 +-
 cpp/src/parquet/file_reader.h             |  2 +-
 cpp/src/parquet/properties.h              |  6 +--
 docs/source/cpp/csv.rst                   |  6 +--
 python/pyarrow/_csv.pyx                   |  5 +-
 python/pyarrow/includes/libarrow.pxd      |  9 ++--
 r/src/csv.cpp                             |  6 +--
 r/src/filesystem.cpp                      |  3 +-
 47 files changed, 453 insertions(+), 227 deletions(-)