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

Method call_sum

pony/orm/sqltranslation.py:3671–3672  ·  view source on GitHub ↗
(monad, distinct=None)

Source from the content-addressed store, hash-verified

3669 def call_count(monad, distinct=None):
3670 return monad.count(distinct=distinct)
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):

Callers

nothing calls this directly

Calls 1

aggregateMethod · 0.45

Tested by

no test coverage detected