You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by np...@apache.org on 2021/08/04 19:11:37 UTC

[arrow] branch master updated (71a57b1 -> 72b52ef)

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

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


    from 71a57b1  ARROW-13552: [C++] Remove deprecated APIs
     add 72b52ef  ARROW-13344: [R] Initial bindings for ExecPlan/ExecNode

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/compute/exec.cc           |    2 +-
 cpp/src/arrow/compute/exec/exec_plan.cc |   35 +-
 cpp/src/arrow/compute/exec/exec_plan.h  |    4 +-
 cpp/src/arrow/compute/exec/plan_test.cc |   11 +-
 cpp/src/arrow/dataset/scanner.cc        |    9 +-
 cpp/src/arrow/dataset/scanner_test.cc   |   14 +-
 r/DESCRIPTION                           |    1 +
 r/R/arrowExports.R                      | 1783 ++++++++++++++++---------------
 r/R/dplyr-eval.R                        |    8 +-
 r/R/dplyr-functions.R                   |   41 +-
 r/R/dplyr-summarize.R                   |  102 +-
 r/R/dplyr.R                             |   22 +-
 r/R/duckdb.R                            |    7 +-
 r/R/query-engine.R                      |   75 ++
 r/man/ChunkedArray.Rd                   |   22 +
 r/man/Field.Rd                          |    5 +
 r/man/FileFormat.Rd                     |   15 +
 r/man/ParquetFileReader.Rd              |   12 +
 r/man/RecordBatch.Rd                    |   11 +
 r/man/RecordBatchReader.Rd              |   37 +
 r/man/RecordBatchWriter.Rd              |   37 +
 r/man/Scalar.Rd                         |   17 +
 r/man/Schema.Rd                         |    9 +
 r/man/Table.Rd                          |   11 +
 r/man/array.Rd                          |   23 +
 r/man/buffer.Rd                         |    9 +
 r/man/call_function.Rd                  |   10 +
 r/man/codec_is_available.Rd             |    5 +
 r/man/copy_files.Rd                     |   10 +
 r/man/data-type.Rd                      |    8 +
 r/man/hive_partition.Rd                 |    5 +
 r/man/list_compute_functions.Rd         |    7 +
 r/man/load_flight_server.Rd             |    5 +
 r/man/match_arrow.Rd                    |   25 +
 r/man/open_dataset.Rd                   |   51 +
 r/man/read_delim_arrow.Rd               |   11 +
 r/man/read_feather.Rd                   |   11 +
 r/man/read_json_arrow.Rd                |   12 +
 r/man/read_parquet.Rd                   |    9 +
 r/man/s3_bucket.Rd                      |    5 +
 r/man/to_duckdb.Rd                      |   19 +
 r/man/type.Rd                           |   10 +
 r/man/unify_schemas.Rd                  |    7 +
 r/man/value_counts.Rd                   |    6 +
 r/man/write_csv_arrow.Rd                |    7 +
 r/man/write_feather.Rd                  |    7 +
 r/man/write_ipc_stream.Rd               |    7 +
 r/man/write_parquet.Rd                  |   12 +
 r/man/write_to_raw.Rd                   |    7 +
 r/src/arrowExports.cpp                  |  155 ++-
 r/src/arrow_types.h                     |   10 +
 r/src/compute-exec.cpp                  |  177 +++
 r/src/expression.cpp                    |   15 +-
 r/tests/testthat/test-dataset.R         |   26 +-
 r/tests/testthat/test-dplyr-aggregate.R |  185 ++++
 r/tests/testthat/test-dplyr-group-by.R  |    6 +-
 r/tests/testthat/test-dplyr.R           |   20 +-
 57 files changed, 2199 insertions(+), 973 deletions(-)
 create mode 100644 r/R/query-engine.R
 create mode 100644 r/src/compute-exec.cpp
 create mode 100644 r/tests/testthat/test-dplyr-aggregate.R