(self)
| 449 | gathered_reducers: dict[str, expr.ColumnExpression] |
| 450 | |
| 451 | def __init__(self) -> None: |
| 452 | self.count = itertools.count(0) |
| 453 | self.gathered_reducers = {} |
| 454 | |
| 455 | def add_expression(self, expression: expr.ColumnExpression) -> expr.ColumnReference: |
| 456 | name = f"_pw_having_{next(self.count)}" |