diff --git a/cpp/velox/memory/VeloxMemoryManager.cc b/cpp/velox/memory/VeloxMemoryManager.cc index cea3f99bbdd0..cc1419e85b05 100644 --- a/cpp/velox/memory/VeloxMemoryManager.cc +++ b/cpp/velox/memory/VeloxMemoryManager.cc @@ -101,7 +101,7 @@ class ListenableArbitrator : public velox::memory::MemoryArbitrator { velox::memory::MemoryPool* candidate; { std::unique_lock guard{mutex_}; - VELOX_CHECK_EQ(candidates_.size(), 1, "ListenableArbitrator should only be used within a single root pool") + VELOX_CHECK_EQ(candidates_.size(), 1, "ListenableArbitrator should only be used within a single root pool"); candidate = candidates_.begin()->first; } VELOX_CHECK(pool->root() == candidate, "Illegal state in ListenableArbitrator"); @@ -116,7 +116,7 @@ class ListenableArbitrator : public velox::memory::MemoryArbitrator { velox::memory::MemoryPool* pool; { std::unique_lock guard{mutex_}; - VELOX_CHECK_EQ(candidates_.size(), 1, "ListenableArbitrator should only be used within a single root pool") + VELOX_CHECK_EQ(candidates_.size(), 1, "ListenableArbitrator should only be used within a single root pool"); pool = candidates_.begin()->first; } pool->reclaim(targetBytes, 0, status); // ignore the output diff --git a/cpp/velox/substrait/SubstraitToVeloxPlan.cc b/cpp/velox/substrait/SubstraitToVeloxPlan.cc index 71dcd4b50466..44a8ff7c1e39 100644 --- a/cpp/velox/substrait/SubstraitToVeloxPlan.cc +++ b/cpp/velox/substrait/SubstraitToVeloxPlan.cc @@ -2477,7 +2477,7 @@ core::TypedExprPtr SubstraitToVeloxPlanConverter::connectWithAnd( allFilters.emplace_back(filter); } } - VELOX_CHECK_GT(allFilters.size(), 0, "One filter should be valid.") + VELOX_CHECK_GT(allFilters.size(), 0, "One filter should be valid."); core::TypedExprPtr andFilter = allFilters[0]; for (auto i = 1; i < allFilters.size(); i++) { andFilter = connectWithAnd(andFilter, allFilters[i]); diff --git a/ep/build-velox/src/get_velox.sh b/ep/build-velox/src/get_velox.sh index 224a4234217f..2a4535480120 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_09_19 +VELOX_BRANCH=2024_09_23 VELOX_HOME="" OS=`uname -s`