Calculates the sum of all the values in the given fields within the group
| 23 | |
| 24 | |
| 25 | class sum(FieldOnlyReducer): |
| 26 | """ |
| 27 | Calculates the sum of all the values in the given fields within the group |
| 28 | """ |
| 29 | |
| 30 | NAME = "SUM" |
| 31 | |
| 32 | def __init__(self, field: str) -> None: |
| 33 | super().__init__(field) |
| 34 | |
| 35 | |
| 36 | class min(FieldOnlyReducer): |
no outgoing calls