MCPcopy
hub / github.com/ponyorm/pony / call_min

Method call_min

pony/orm/sqltranslation.py:3673–3674  ·  view source on GitHub ↗
(monad)

Source from the content-addressed store, hash-verified

3671 def call_sum(monad, distinct=None):
3672 return monad.aggregate('SUM', distinct)
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):

Callers

nothing calls this directly

Calls 1

aggregateMethod · 0.45

Tested by

no test coverage detected