| 508 | MutableRemainingRows remainingRows(rows, context); |
| 509 | const bool defaultNulls = vectorFunction_->isDefaultNullBehavior(); |
| 510 | auto evalArg = [&](int32_t i) { |
| 511 | auto& inputValue = inputValues_[i]; |
| 512 | inputs_[i]->evalSimplified(remainingRows.rows(), context, inputValue); |
| 513 | BaseVector::flattenVector(inputValue); |
| 514 | BOLT_CHECK( |
| 515 | inputValue->encoding() == VectorEncoding::Simple::FLAT || |
| 516 | inputValue->encoding() == VectorEncoding::Simple::ARRAY || |
nothing calls this directly
no test coverage detected