Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Commit 1e996c5

Browse files
committed
Update Velox submodule
Update to facebookincubator/velox@9657cd7, which update ExprSet::eval API Also cherry-pick 458dc0b to update the API usage.
1 parent 1cb9157 commit 1e996c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

csrc/velox/column.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ std::unique_ptr<BaseColumn> OperatorHandle::call(
452452
&TorchArrowGlobalStatic::execContext(), exprSet_.get(), inputRows.get());
453453
velox::SelectivityVector select(size);
454454
std::vector<velox::VectorPtr> outputRows(1);
455-
exprSet_->eval(0, 1, true, select, &evalCtx, &outputRows);
455+
exprSet_->eval(0, 1, true, select, evalCtx, outputRows);
456456

457457
// TODO: This causes an extra type-based dispatch.
458458
// We can optimize it by template OperatorHandle by return type

0 commit comments

Comments
 (0)