This is an automated email from the ASF dual-hosted git repository.
wesm pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.
from a60529c ARROW-8927: [C++] Support dictionary memo in CUDA IPC
ReadRecordBatch functions
add 1698951 ARROW-9106: [Python] Allow specifying CSV file encoding
No new revisions were added by this update.
Summary of changes:
cpp/src/arrow/CMakeLists.txt | 1 +
cpp/src/arrow/io/memory_test.cc | 221 ++++++++++++++++++++++++
cpp/src/arrow/io/transform.cc | 149 ++++++++++++++++
cpp/src/arrow/io/{test_common.h => transform.h} | 44 +++--
cpp/src/arrow/python/io.cc | 36 ++++
cpp/src/arrow/python/io.h | 19 +-
docs/source/python/csv.rst | 7 +-
python/pyarrow/__init__.py | 1 +
python/pyarrow/_csv.pyx | 29 ++--
python/pyarrow/includes/common.pxd | 1 +
python/pyarrow/includes/libarrow.pxd | 15 ++
python/pyarrow/includes/libarrow_flight.pxd | 2 -
python/pyarrow/includes/libarrow_fs.pxd | 2 -
python/pyarrow/io.pxi | 63 +++++++
python/pyarrow/lib.pxd | 4 +
python/pyarrow/tests/test_csv.py | 33 +++-
python/pyarrow/tests/test_io.py | 79 +++++++++
17 files changed, 664 insertions(+), 42 deletions(-)
create mode 100644 cpp/src/arrow/io/transform.cc
copy cpp/src/arrow/io/{test_common.h => transform.h} (55%)