New MIN/MAX functions that accepts any expression type.
This commit is contained in:
parent
4b86e8f0ca
commit
e09c78dec3
6 changed files with 46 additions and 0 deletions
|
|
@ -69,12 +69,18 @@ var COUNT = jet.COUNT
|
|||
// EVERY is aggregate function. Returns true if all input values are true, otherwise false
|
||||
var EVERY = jet.EVERY
|
||||
|
||||
// MAXf is aggregate function. Returns maximum value of expression across all input values
|
||||
var MAX = jet.MAX
|
||||
|
||||
// MAXf is aggregate function. Returns maximum value of float expression across all input values
|
||||
var MAXf = jet.MAXf
|
||||
|
||||
// MAXi is aggregate function. Returns maximum value of int expression across all input values
|
||||
var MAXi = jet.MAXi
|
||||
|
||||
// MIN is aggregate function. Returns minimum value of expression across all input values.
|
||||
var MIN = jet.MIN
|
||||
|
||||
// MINf is aggregate function. Returns minimum value of float expression across all input values
|
||||
var MINf = jet.MINf
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue