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 2019/09/26 14:54:04 UTC

[arrow] branch master updated (2dc020c -> dec0cfb)

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 2dc020c  ARROW-6709: [JAVA] Jdbc adapter currentIndex should increment when va…
     add dec0cfb  ARROW-6606: [C++] Add PathTree tree structure

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt               |   1 +
 cpp/src/arrow/filesystem/CMakeLists.txt    |   1 +
 cpp/src/arrow/filesystem/filesystem.cc     |   4 +
 cpp/src/arrow/filesystem/filesystem.h      |   6 +
 cpp/src/arrow/filesystem/path_tree.cc      | 137 ++++++++++++++++++++++
 cpp/src/arrow/filesystem/path_tree.h       | 110 ++++++++++++++++++
 cpp/src/arrow/filesystem/path_tree_test.cc | 179 +++++++++++++++++++++++++++++
 cpp/src/arrow/filesystem/test_util.cc      |  14 ---
 cpp/src/arrow/filesystem/test_util.h       |  14 +++
 9 files changed, 452 insertions(+), 14 deletions(-)
 create mode 100644 cpp/src/arrow/filesystem/path_tree.cc
 create mode 100644 cpp/src/arrow/filesystem/path_tree.h
 create mode 100644 cpp/src/arrow/filesystem/path_tree_test.cc