The SQL MAX() aggregate function.
| 1824 | |
| 1825 | |
| 1826 | class max(ReturnTypeFromArgs[_T]): # noqa: A001 |
| 1827 | """The SQL MAX() aggregate function.""" |
| 1828 | |
| 1829 | inherit_cache = True |
| 1830 | |
| 1831 | |
| 1832 | class min(ReturnTypeFromArgs[_T]): # noqa: A001 |
no outgoing calls