SumOf
Computed value which computes the sum of all values in a column of a table at tablePath. Values of type Int, Long, Double, BigInteger, and BigDecimal are supported.
Specify the column over which to compute the sum, relative to a row of the table, via columnPath.
Column values should be (possibly) nullable numeric values.
Example usage:
ComputedSchema(SumOf("../table", Row::column)) {
LongSchema()
}Content copied to clipboard
Properties
Link copied to clipboard
Path of the table column over which to compute the sum, relative to a row of the table.
Link copied to clipboard
Dependencies of the computation. Mapping of keys to the paths this computation depends on. Keys can be used within a ComputationContext to access the value of the dependencies.
Link copied to clipboard
Set of external context dependencies of the computation.