| 185 | } |
| 186 | |
| 187 | string AggFn::DebugString() const { |
| 188 | stringstream out; |
| 189 | out << "AggFn(op=" << agg_op_; |
| 190 | for (ScalarExpr* input_expr : children()) { |
| 191 | out << " " << input_expr->DebugString() << ")"; |
| 192 | } |
| 193 | out << ")"; |
| 194 | return out.str(); |
| 195 | } |
| 196 | |
| 197 | string AggFn::DebugString(const vector<AggFn*>& agg_fns) { |
| 198 | stringstream out; |