The SQL MIN() aggregate function.
| 1727 | |
| 1728 | |
| 1729 | class min(ReturnTypeFromArgs[_T]): # noqa: A001 |
| 1730 | """The SQL MIN() aggregate function.""" |
| 1731 | |
| 1732 | inherit_cache = True |
| 1733 | |
| 1734 | |
| 1735 | class sum(ReturnTypeFromArgs[_T]): # noqa: A001 |
no outgoing calls