diff --git a/cpp/velox/compute/VeloxBackend.cc b/cpp/velox/compute/VeloxBackend.cc index 0d5e1d41a54d..62cc36163d33 100644 --- a/cpp/velox/compute/VeloxBackend.cc +++ b/cpp/velox/compute/VeloxBackend.cc @@ -145,7 +145,7 @@ void VeloxBackend::init(const std::unordered_map& conf velox::filesystems::registerGcsFileSystem(); #endif #ifdef ENABLE_ABFS - velox::filesystems::abfs::registerAbfsFileSystem(); + velox::filesystems::registerAbfsFileSystem(); #endif initJolFilesystem(); diff --git a/cpp/velox/operators/writer/VeloxParquetDataSourceABFS.h b/cpp/velox/operators/writer/VeloxParquetDataSourceABFS.h index 63658cc54ef1..8a417e1c22d2 100644 --- a/cpp/velox/operators/writer/VeloxParquetDataSourceABFS.h +++ b/cpp/velox/operators/writer/VeloxParquetDataSourceABFS.h @@ -46,7 +46,7 @@ class VeloxParquetDataSourceABFS final : public VeloxParquetDataSource { auto hiveConf = getHiveConfig(std::make_shared( std::unordered_map(sparkConfs))); auto fileSystem = filesystems::getFileSystem(filePath_, hiveConf); - auto* abfsFileSystem = dynamic_cast(fileSystem.get()); + auto* abfsFileSystem = dynamic_cast(fileSystem.get()); sink_ = std::make_unique( abfsFileSystem->openFileForWrite(filePath_, {{}, sinkPool_.get()}), filePath_); } diff --git a/ep/build-velox/src/get_velox.sh b/ep/build-velox/src/get_velox.sh index 74d105100bfb..53615ddccfbe 100755 --- a/ep/build-velox/src/get_velox.sh +++ b/ep/build-velox/src/get_velox.sh @@ -17,7 +17,7 @@ set -exu VELOX_REPO=https://github.com/oap-project/velox.git -VELOX_BRANCH=2024_11_19 +VELOX_BRANCH=2024_11_20 VELOX_HOME="" OS=`uname -s`