The SQL MIN() aggregate function.
| 1830 | |
| 1831 | |
| 1832 | class min(ReturnTypeFromArgs[_T]): # noqa: A001 |
| 1833 | """The SQL MIN() aggregate function.""" |
| 1834 | |
| 1835 | inherit_cache = True |
| 1836 | |
| 1837 | |
| 1838 | class sum(ReturnTypeFromArgs[_T]): # noqa: A001 |
no outgoing calls