Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
JkSelf committed Nov 15, 2024
1 parent 606bc6e commit 45d6efa
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 20 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ option(VELOX_ENABLE_BENCHMARKS_BASIC "Enable Velox basic benchmarks." OFF)
option(VELOX_ENABLE_S3 "Build S3 Connector" OFF)
option(VELOX_ENABLE_GCS "Build GCS Connector" OFF)
option(VELOX_ENABLE_ABFS "Build Abfs Connector" OFF)
option(VELOX_ENABLE_HDFS "Build Hdfs Connector" OFF)
option(VELOX_ENABLE_HDFS3 "Build Hdfs3 Connector" OFF)
option(VELOX_ENABLE_PARQUET "Enable Parquet support" OFF)
option(VELOX_ENABLE_ARROW "Enable Arrow support" OFF)
Expand Down
4 changes: 0 additions & 4 deletions velox/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ add_subdirectory(row)
add_subdirectory(flag_definitions)
add_subdirectory(external/date)
add_subdirectory(external/md5)

if(${VELOX_ENABLE_HDFS})
add_subdirectory(external/hdfs)
endif()
#

# examples depend on expression
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@
#include "velox/common/config/Config.h"
#include "velox/connectors/hive/storage_adapters/hdfs/HdfsReadFile.h"
#include "velox/connectors/hive/storage_adapters/hdfs/HdfsWriteFile.h"

#ifdef VELOX_ENABLE_HDFS3
#include <hdfs/hdfs.h>
#endif

namespace facebook::velox::filesystems {
std::string_view HdfsFileSystem::kScheme("hdfs://");
Expand Down
3 changes: 0 additions & 3 deletions velox/connectors/hive/storage_adapters/hdfs/HdfsReadFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@

#include "HdfsReadFile.h"
#include <folly/synchronization/CallOnce.h>

#ifdef VELOX_ENABLE_HDFS3
#include <hdfs/hdfs.h>
#endif

namespace facebook::velox {
struct HdfsFile {
Expand Down
3 changes: 0 additions & 3 deletions velox/connectors/hive/storage_adapters/hdfs/HdfsReadFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
*/

#include "velox/common/file/File.h"

#ifdef VELOX_ENABLE_HDFS3
#include <hdfs/hdfs.h>
#endif

namespace facebook::velox {
/**
Expand Down
3 changes: 0 additions & 3 deletions velox/connectors/hive/storage_adapters/hdfs/HdfsWriteFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
*/

#include "velox/connectors/hive/storage_adapters/hdfs/HdfsWriteFile.h"

#ifdef VELOX_ENABLE_HDFS3
#include <hdfs/hdfs.h>
#endif

namespace facebook::velox {
HdfsWriteFile::HdfsWriteFile(
Expand Down
3 changes: 0 additions & 3 deletions velox/connectors/hive/storage_adapters/hdfs/HdfsWriteFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@
#pragma once

#include "velox/common/file/File.h"

#ifdef VELOX_ENABLE_HDFS3
#include <hdfs/hdfs.h>
#endif

namespace facebook::velox {

Expand Down

0 comments on commit 45d6efa

Please sign in to comment.