During the AGR_INIT aggregation phase, a UDF must also save the first set of data values passed in through arguments into the intermediate aggregate storage area. The first set of data values are for the first row to aggregate for the group.
Thereafter, each time the function is called during the AGR_DETAIL aggregation phase, it must accumulate the row data passed in through arguments into the intermediate aggregate storage area for the specific group. Each group being aggregated to has a separate intermediate storage area.
The aggregation storage area is pointed to by interim1 in the FNC_Context_t function context argument.
- sum(X 2)
- sum(X)
The following statements perform the necessary calculations using the column value, and then combine the results with the intermediate storage:
s1->n++; s1->x_sq += *x * *x; s1->x_sum += *x;