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/04/12 16:44:03 UTC

[arrow] branch master updated (91a658a -> 66e1d2b)

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 91a658a  ARROW-12323: [C++][Gandiva] Implement castTIME(timestamp) function
     add 66e1d2b  ARROW-11972: [C++][R][Python][Dataset] Extract IPC/Parquet fragment scan options

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/dataset/dataset_internal.h     |   2 +-
 cpp/src/arrow/dataset/file_ipc.cc            |  32 +++-
 cpp/src/arrow/dataset/file_ipc.h             |  14 +-
 cpp/src/arrow/dataset/file_ipc_test.cc       |  22 +++
 cpp/src/arrow/dataset/file_parquet.cc        |  58 ++++--
 cpp/src/arrow/dataset/file_parquet.h         |  53 +++---
 cpp/src/arrow/dataset/file_parquet_test.cc   |   5 +-
 cpp/src/arrow/dataset/test_util.h            |   3 +-
 cpp/src/arrow/dataset/type_fwd.h             |   2 +
 python/pyarrow/_dataset.pyx                  | 258 ++++++++++++++++++++-------
 python/pyarrow/_parquet.pxd                  |   3 +
 python/pyarrow/dataset.py                    |   1 +
 python/pyarrow/includes/libarrow_dataset.pxd |  10 +-
 python/pyarrow/parquet.py                    |   4 +-
 python/pyarrow/tests/test_dataset.py         |  49 ++---
 r/R/arrowExports.R                           |   8 +-
 r/R/dataset-format.R                         |  33 +++-
 r/src/arrowExports.cpp                       |  31 +++-
 r/src/dataset.cpp                            |  25 ++-
 19 files changed, 448 insertions(+), 165 deletions(-)