diff --git a/csrc/velox/column.cpp b/csrc/velox/column.cpp index c7a4ce312..2ad88f7a8 100644 --- a/csrc/velox/column.cpp +++ b/csrc/velox/column.cpp @@ -452,7 +452,7 @@ std::unique_ptr OperatorHandle::call( &TorchArrowGlobalStatic::execContext(), exprSet_.get(), inputRows.get()); velox::SelectivityVector select(size); std::vector outputRows(1); - exprSet_->eval(0, 1, true, select, &evalCtx, &outputRows); + exprSet_->eval(0, 1, true, select, evalCtx, outputRows); // TODO: This causes an extra type-based dispatch. // We can optimize it by template OperatorHandle by return type