| 268 | } |
| 269 | |
| 270 | std::string ScalarAggregateNode::ToStringExtra(int indent) const { |
| 271 | std::stringstream ss; |
| 272 | const auto input_schema = inputs_[0]->output_schema(); |
| 273 | AggregatesToString(&ss, *input_schema, aggs_, target_fieldsets_); |
| 274 | return ss.str(); |
| 275 | } |
| 276 | |
| 277 | Status ScalarAggregateNode::ResetKernelStates() { |
| 278 | auto exec_ctx = plan()->query_context()->exec_context(); |
nothing calls this directly
no test coverage detected