From f6ebcec086a2bfa32aa6981a2bab0e08831b1e0b Mon Sep 17 00:00:00 2001 From: Jia Ke Date: Fri, 25 Oct 2024 17:05:15 +0800 Subject: [PATCH] Fix the compile issue in gluten cpp --- .../connectors/hive/storage_adapters/hdfs/HdfsFileSystem.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/velox/connectors/hive/storage_adapters/hdfs/HdfsFileSystem.h b/velox/connectors/hive/storage_adapters/hdfs/HdfsFileSystem.h index 1ae7d28b94e5..d2dbbf17afb5 100644 --- a/velox/connectors/hive/storage_adapters/hdfs/HdfsFileSystem.h +++ b/velox/connectors/hive/storage_adapters/hdfs/HdfsFileSystem.h @@ -15,12 +15,12 @@ */ #include "velox/common/file/FileSystems.h" -namespace velox::filesystems::arrow::io::internal { +namespace facebook::velox::filesystems { + +namespace arrow::io::internal { class LibHdfsShim; } -namespace facebook::velox::filesystems { - struct HdfsServiceEndpoint { HdfsServiceEndpoint(const std::string& hdfsHost, const std::string& hdfsPort) : host(hdfsHost), port(hdfsPort) {}