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 980e1d2 ARROW-7217: [CI][Python] Use correct python version in Github
Actions
add d2ca1f1 ARROW-6720: [C++] Add HDFS implementation to filesystem layer
No new revisions were added by this update.
Summary of changes:
ci/scripts/integration_hdfs.sh | 1 +
cpp/src/arrow/CMakeLists.txt | 12 +
cpp/src/arrow/filesystem/CMakeLists.txt | 4 +
cpp/src/arrow/filesystem/api.h | 1 +
cpp/src/arrow/filesystem/filesystem.cc | 62 ++++
cpp/src/arrow/filesystem/filesystem.h | 14 +
cpp/src/arrow/filesystem/filesystem_test.cc | 67 ++++
cpp/src/arrow/filesystem/hdfs.cc | 415 +++++++++++++++++++++++++
cpp/src/arrow/filesystem/{localfs.h => hdfs.h} | 55 ++--
cpp/src/arrow/filesystem/hdfs_test.cc | 339 ++++++++++++++++++++
cpp/src/arrow/filesystem/localfs_test.cc | 53 ++--
cpp/src/arrow/filesystem/path_util.cc | 41 ++-
cpp/src/arrow/filesystem/path_util.h | 14 +-
cpp/src/arrow/filesystem/test_util.cc | 1 +
cpp/src/arrow/filesystem/util_internal.cc | 6 +
cpp/src/arrow/filesystem/util_internal.h | 4 +
cpp/src/arrow/io/hdfs.cc | 17 +-
cpp/src/arrow/io/hdfs.h | 13 +
cpp/src/arrow/testing/gtest_util.h | 6 +
19 files changed, 1081 insertions(+), 44 deletions(-)
create mode 100644 cpp/src/arrow/filesystem/hdfs.cc
copy cpp/src/arrow/filesystem/{localfs.h => hdfs.h} (60%)
create mode 100644 cpp/src/arrow/filesystem/hdfs_test.cc