(monad)
| 3673 | def call_min(monad): |
| 3674 | return monad.aggregate('MIN') |
| 3675 | def call_max(monad): |
| 3676 | return monad.aggregate('MAX') |
| 3677 | def call_avg(monad, distinct=None): |
| 3678 | return monad.aggregate('AVG', distinct) |
| 3679 | def call_group_concat(monad, sep=None, distinct=None): |