| 177 | } |
| 178 | |
| 179 | std::pair<VectorPtr, std::unordered_map<std::string, exec::ExprStats>> |
| 180 | evaluateWithStats(const std::string& expression, const RowVectorPtr& input) { |
| 181 | auto exprSet = compileExpression(expression, asRowType(input->type())); |
| 182 | return evaluateWithStats(exprSet.get(), input); |
| 183 | } |
| 184 | |
| 185 | std::pair<VectorPtr, std::unordered_map<std::string, exec::ExprStats>> |
| 186 | evaluateWithStats(exec::ExprSet* exprSetPtr, const RowVectorPtr& input) { |