You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2021/04/14 13:31:49 UTC

[arrow] branch master updated (31c8c75 -> 6f2e05d)

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

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


    from 31c8c75  ARROW-12262: [Doc] Enable S3 and Flight in docs build
     add 6f2e05d  ARROW-11677: [C++][Docs] Add basic C++ datasets documentation

No new revisions were added by this update.

Summary of changes:
 cpp/apidoc/Doxyfile                                |   1 +
 cpp/examples/arrow/CMakeLists.txt                  |   5 +
 .../arrow/dataset_documentation_example.cc         | 355 ++++++++++++++++++
 cpp/src/arrow/dataset/dataset.h                    |  18 +-
 cpp/src/arrow/dataset/discovery.h                  |  88 +++--
 cpp/src/arrow/dataset/file_base.h                  |  16 +
 cpp/src/arrow/dataset/file_csv.h                   |   6 +
 cpp/src/arrow/dataset/file_ipc.h                   |   6 +
 cpp/src/arrow/dataset/file_parquet.h               |  69 ++--
 cpp/src/arrow/dataset/partition.h                  |  26 +-
 cpp/src/arrow/dataset/scanner.h                    |  86 +++--
 docs/source/cpp/api.rst                            |   1 +
 .../source/cpp/api/{filesystem.rst => dataset.rst} |  51 +--
 docs/source/cpp/dataset.rst                        | 403 +++++++++++++++++++++
 ...rsion.rst => dataset_documentation_example.rst} |  12 +-
 docs/source/cpp/examples/index.rst                 |   1 +
 docs/source/cpp/getting_started.rst                |   1 +
 docs/source/cpp/io.rst                             |   2 +
 docs/source/python/dataset.rst                     |  38 +-
 19 files changed, 1030 insertions(+), 155 deletions(-)
 create mode 100644 cpp/examples/arrow/dataset_documentation_example.cc
 copy docs/source/cpp/api/{filesystem.rst => dataset.rst} (64%)
 create mode 100644 docs/source/cpp/dataset.rst
 copy docs/source/cpp/examples/{row_columnar_conversion.rst => dataset_documentation_example.rst} (74%)