Skip to content

Commit 43475f4

Browse files
committed
[native] Advance velox
1 parent 6687c50 commit 43475f4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

presto-native-execution/presto_cpp/main/PrestoTask.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ protocol::TaskInfo PrestoTask::updateInfoLocked(bool summarize) {
710710
for (const auto it : veloxTaskStats.numBlockedDrivers) {
711711
addRuntimeMetricIfNotZero(
712712
taskRuntimeStats,
713-
fmt::format("drivers.{}", exec::blockingReasonToString(it.first)),
713+
fmt::format("drivers.{}", exec::BlockingReasonName::toName(it.first)),
714714
it.second);
715715
}
716716
if (veloxTaskStats.longestRunningOpCallMs != 0) {

presto-native-execution/presto_cpp/main/types/PrestoToVeloxQueryPlan.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1281,6 +1281,7 @@ VeloxQueryPlanConverterBase::toVeloxQueryPlan(
12811281
leftKeys,
12821282
rightKeys,
12831283
joinConditionPtrs,
1284+
false,
12841285
left,
12851286
std::dynamic_pointer_cast<const core::TableScanNode>(right),
12861287
type::concatRowTypes({left->outputType(), right->outputType()}));

presto-native-execution/velox

Submodule velox updated 165 files

0 commit comments

Comments
 (0)