(&mut self, d: &Datum)
| 2540 | } |
| 2541 | |
| 2542 | fn give(&mut self, d: &Datum) { |
| 2543 | match self { |
| 2544 | OneByOneAggrImpls::Basic(i) => i.give(d), |
| 2545 | OneByOneAggrImpls::Accumulable(i) => i.give(d), |
| 2546 | OneByOneAggrImpls::Hierarchical(i) => i.give(d), |
| 2547 | } |
| 2548 | } |
| 2549 | |
| 2550 | fn get_current_aggregate<'a>(&self, temp_storage: &'a RowArena) -> Datum<'a> { |
| 2551 | // Note that the `reverse` parameter is currently forwarded only for Basic aggregations. |
no test coverage detected