| 122 | // Release the minimum reserved memory. |
| 123 | pool()->release(); |
| 124 | } |
| 125 | |
| 126 | void OrderBy::noMoreInput() { |
| 127 | Operator::noMoreInput(); |
| 128 | sortBuffer_->noMoreInput(); |
| 129 | maxOutputRows_ = outputBatchRows(sortBuffer_->estimateOutputRowSize()); |
| 130 | recordSpillStats(); |
| 131 | } |
| 132 |
nothing calls this directly
no test coverage detected