Skip to content

Commit

Permalink
[GLUTEN-6887][VL] Daily Update Velox Version (2024_09_23) (apache#7309)
Browse files Browse the repository at this point in the history
  • Loading branch information
GlutenPerfBot authored Sep 23, 2024
1 parent 795e3ee commit ed4d814
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cpp/velox/memory/VeloxMemoryManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cpp/velox/substrait/SubstraitToVeloxPlan.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down
2 changes: 1 addition & 1 deletion ep/build-velox/src/get_velox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit ed4d814

Please sign in to comment.