Polypheny-DB
Polypheny-DB copied to clipboard
Add support for functions in query plan builder
Currently it is only possible to model aggregation functions in the query plan builder. Other functions like abs
, distance
or sqrt
are not possible.
Functions can have a different number of parameters. E.g.:
random
: No parameter
abs
: 1 Parameter
power
: 2 Parameters
distance
: 3-4 Parameters