| 626 | } |
| 627 | |
| 628 | string GroupingAggregator::DebugString(int indentation_level) const { |
| 629 | stringstream ss; |
| 630 | DebugString(indentation_level, &ss); |
| 631 | return ss.str(); |
| 632 | } |
| 633 | |
| 634 | void GroupingAggregator::DebugString(int indentation_level, stringstream* out) const { |
| 635 | *out << string(indentation_level * 2, ' '); |
no test coverage detected