Aggregation Provenance

Aggregation is the most subtle feature of ProvSQL’s query rewriter: unlike selection or join, an aggregate function fundamentally combines values rather than just propagating them, so the provenance of an aggregate result cannot be a plain semiring value of the same type as a tuple’s provenance. This chapter explains the data model ProvSQL uses to represent aggregate provenance, the gate types involved, and how the rewriter glues everything together. The final section is a step-by-step guide for adding a new aggregate function in C++.

For the user-facing semantics see Aggregation and Grouping; for the formal semantics over the extended relational algebra see the ICDE 2026 paper [Sen et al., 2026].

The Semimodule Picture

The semiring framework for positive relational algebra (selection, projection, join, union) annotates tuples: each row of a K-relation carries a single element of a commutative semiring K. Aggregation does not fit that picture, because the result of SUM(salary) is a value, not a tuple, and the question “where does this value come from?” has to track both the contributing rows and the payload each row contributed. Amsterdamer, Deutch, and Tannen ([Amsterdamer et al., 2011]) resolved this by annotating tuples and values simultaneously using a K-semimodule.

A K-semimodule is a commutative monoid (M, +, 0) together with a scalar multiplication \cdot : K \times M \to M that distributes over the semiring operations on K and over the monoid addition on M. The intuition is that elements of M are “aggregate values” and elements of K are “provenance annotations”; scaling m by k produces an M-element “tagged” with the provenance k.

The specific K-semimodule the paper builds for aggregate provenance is the tensor product K \star M, whose elements are finite formal sums k_1 \star m_1 + k_2 \star m_2 + \cdots + k_n \star m_n of pairs (“simple tensors”) k \star m, modulo the equivalences that make \star bilinear ((k \oplus k') \star m = k \star m + k' \star m, etc.). Note how this mixes three different operations: \oplus is the ⊕ of the semiring K, + is the monoid addition of the semimodule K \star M, and \star is the tensor product that glues a K-element to an M-element. A simple tensor k \star m should be read as “the tuple with provenance k contributed the value m”. The whole K \star M is itself a K-semimodule, with scalar multiplication k' \cdot (k \star m) = (k' \otimes k) \star m.

Concretely, for a query like

SELECT city, SUM(salary) FROM personnel GROUP BY city;

the provenance of the aggregate value in one group is

k_1 \star m_1 \;+\; k_2 \star m_2 \;+\; \cdots
  \;+\; k_n \star m_n

where k_i is the semiring annotation of the i-th input tuple in the group and m_i is its salary payload (lifted into M). The sum is not collapsed into a single number – it carries, for every contributing tuple, both its provenance and the value it contributed, and concrete semirings (Counting, Formula, …) are free to specialise the aggregation over K \star M into a meaningful scalar only at evaluation time.

Strictly speaking, the Amsterdamer et al. construction requires (M, +, 0) to be a commutative monoid, which rules out aggregate operators that are non-associative or non-commutative (ARRAY_AGG with a user-supplied order, for instance). ProvSQL therefore reuses the semimodule framework – the tensor product K \star M, the semimod / agg / value gate types, the circuit shape – but does not bake the monoid axioms into it. An agg gate is treated as an abstract formal sum of simple tensors, and it is up to each concrete accumulator to decide what “combining” those tensors means. Aggregates whose operator genuinely is a commutative monoid (SUM, COUNT, MIN, MAX, AND, OR, …) open the door to optimisations – reordering, partial folding during traversal, and so on – that accumulators for order-sensitive or non-associative aggregates cannot use. The distinction is a property of the accumulator, not of the gate representation.

ProvSQL realises this construction directly as a circuit built from three gate types in gate_type:

  • value – a leaf carrying a constant payload m (stored as a string in the persistent representation; the C++ accumulator parses it into the appropriate native type).

  • semimod – a binary gate representing one simple tensor k \star m. Its two children are the tuple’s provenance (a sub-circuit evaluating to k \in K) and a value gate carrying m.

  • agg – the aggregate root, the formal sum \sum_i (k_i \star m_i) taken over all tuples in the group. Its annotations (info1 / info2 from get_infos) record the PostgreSQL OID of the aggregate function and the OID of its result type, so the evaluator can later instantiate the right C++ accumulator. The high bit of info2 flags a scalar (no GROUP BY) aggregation (PROVSQL_AGG_TYPE_MASK in provsql_utils.h); consumers mask it off before using the result-type OID.

Row-level provenance and the δ operator

An agg gate gives the provenance of the aggregate value in one column of one output row, but the row itself also has a provenance – “this row exists in the result” – that the downstream evaluators need. That row-level provenance is the ⊕ of the per-tuple tokens of the group, just like for a plain GROUP BY without aggregates. However, summing raw tuple annotations can over-count existence: a row that exists in multiplicity n in the input would naively have a row-level provenance of 1_K \oplus 1_K \oplus \cdots \oplus 1_K (n times), whereas what we want is a single “it exists”.

The δ operator (Amsterdamer, Deutch, Tannen [Amsterdamer et al., 2011]) solves this. A δ-semiring is a semiring together with a unary operation δ satisfying \delta(\mathbb{0}) = \mathbb{0} and \delta(\mathbb{1} \oplus \cdots \oplus \mathbb{1}) = \mathbb{1} regardless of the number of \mathbb{1} s. Intuitively, δ collapses “any positive number of witnesses” to a single “exists”. The rewriter emits a delta gate wrapping the row-level ⊕ for grouped aggregation whose HAVING clause (if any) is not lifted into the provenance circuit (see make_provenance_expression). Scalar aggregation (no GROUP BY) gets gate_one instead: the single result row always exists, even over an empty input. A HAVING predicate left for native PostgreSQL evaluation still gets the δ; only a lifted HAVING – one referencing aggregate provenance – replaces the row-level token altogether with provenance_cmp: such a predicate constrains existence in a way that depends on the aggregate value, so the row-level token has to carry more information than a flat “exists”, and the rewriter routes the result through cmp gates that having_semantics.hpp evaluates ahead of the main traversal (see Optional Methods).

The agg_token Type

PostgreSQL evaluates aggregates using its own machinery, which expects them to return ordinary scalar types (an INT, a FLOAT…). But the rewritten query needs the aggregate result to carry both the scalar value and the provenance gate that captures how it was computed – otherwise downstream references to provenance would have nothing to return.

ProvSQL solves this by introducing agg_token, a composite SQL type wrapping a UUID (the root agg gate) and a string form of the aggregate value. The rewriter wraps every Aggref in a call to provenance_aggregate whose return type is agg_token. When the executor processes the result, every aggregate column carries an agg_token and both pieces of information flow downstream:

  • provenance extracts the UUID for the user.

  • Cast operators on agg_token (defined in agg_token.c) extract the scalar value when the user treats the result as a number, e.g. for further arithmetic.

Arithmetic on aggregate results preserves provenance: once you write SUM(x) * 2, the rewriter (cast_agg_token_mutator / try_swap_agg_arith in provsql.c) swaps the scalar operator for the + - * / operators defined on agg_token (in sql/provsql.common.sql), so the result is again an agg_token whose UUID points at an arith gate over the operand circuits. Provenance is lost only on a genuine cast out of agg_token – e.g. storing the result into a numeric column – and the cast functions in agg_token.c emit an execution-time warning when that happens. Comparisons of aggregate results are routed through cmp gates so that HAVING predicates preserve provenance too – see Semiring Evaluation for the gory details of how that pre-evaluation works.

What the Rewriter Builds

The generic rewriting pipeline in Query Rewriting Pipeline covers aggregation at the pipeline level: Step 4 calls rewrite_agg_distinct to lift COUNT(DISTINCT ...) into an inner GROUP BY, Step 8 calls migrate_probabilistic_quals, then replace_aggregations_by_provenance_aggregate (and rewrite_agg_cases), then insert_agg_token_casts, and Step 9 fuses the row-level tokens with provenance_plus(array_agg(...)) and wraps the result in provenance_delta. This section only documents the aggregation-specific structures those passes produce – the pieces that the generic pipeline description is too terse to spell out.

The call that make_aggregation_expression synthesises to replace an Aggref is a FuncExpr for provenance_aggregate whose arguments are:

  • the OID of the aggregate function;

  • the OID of its result type;

  • the original Aggref itself, so PostgreSQL still computes the scalar value (this is what ends up inside the agg_token);

  • an ARRAY[...] of per-tuple provenance_semimod(arg, t) calls – one semimod gate per row of the input, glueing the row’s provenance t to the row’s contributed value arg;

  • a boolean is_scalar (DEFAULT false), set for scalar (no GROUP BY) aggregation; it flows into the high bit of the agg gate’s info2.

That fourth argument is where the semimodule construction of The Semimodule Picture is actually assembled: every semimod gate is one simple tensor k \star m, and the agg gate at the root of the provenance_aggregate call is their formal sum \sum_i (k_i \star m_i).

The row-level side of the rewrite is much simpler. It reuses the ordinary get_provenance_attributes collection, combines the per-row tokens with provenance_plus(array_agg(...)), and – for grouped aggregation whose HAVING (if any) is not lifted – wraps the result in provenance_delta (scalar aggregation gets gate_one; a lifted HAVING replaces the token with provenance_cmp). The row-level token therefore has no semimodule content: it only records which input rows witness the output row’s existence.

The end result is that each row of the aggregation output carries:

  • per-aggregate-column agg_token values whose UUID points to an agg gate combining semimod per-tuple contributions;

  • a row-level provsql token whose root is a delta gate over the ⊕ of the group’s row tokens.

These two pieces are independent: an evaluator that asks for the provenance of a value in the result reaches an agg gate; an evaluator that asks for the provenance of the row itself reaches a delta gate.

Currently Supported Aggregates

The AggregationOperator enum in Aggregation.h lists the operators recognised in C++: COUNT (normalised to SUM over INT), SUM, MIN, MAX, AVG, AND, OR, CHOOSE, and ARRAY_AGG. Only the aggregates the Monte-Carlo sampler and the subset enumerator evaluate directly get an Aggregator accumulator (the numeric ones – SUM / COUNT / MIN / MAX / AVG – and CHOOSE); the boolean aggregates (bool_and / bool_or / every) and array_agg exist only as enum values for routing, because their HAVING comparisons are resolved entirely by the m-semiring rewrite in having_semantics.cpp (two-value characterisation and possible-worlds enumeration respectively) and never reach the deterministic sampler. Adding to the accumulator list is the topic of the next section.

Random-Variable Aggregates

When the aggregated column has type random_variable (see Continuous Distributions), the rewriter routes through a separate path: instead of producing a provenance_aggregate call that wraps the original Aggref in an agg_token, it produces an aggregate that returns a random_variable root. The aggregate’s result is the lifted scalar \sum_i \mathbf{1}\{\varphi_i\}
\cdot X_i (or its product / average / extremum analogue), realised as a single gate_arith over per-row gate_mixture children.

The dispatch in make_aggregation_expression keys on aggtype (the aggregate’s result type OID): when aggtype = OID_TYPE_RANDOM_VARIABLE, the per-row argument X_i is wrapped in rv_aggregate_semimod (a mixture over the row’s provenance gate and the identity for the aggregate) before it reaches the SFUNC. The identity is dispatched per aggregate — 0 for sum, and through the three-argument identity-parameterised form of rv_aggregate_semimod, 1 for product, -Infinity for max, +Infinity for min — so a row absent in a world contributes the fold’s identity rather than perturbing it. avg is rewritten at the same site into the “AVG = SUM / COUNT” identity (a numerator sum over the wrapped rows divided by a sum of mixture(prov_i, 1, 0) indicators). The aggregate’s SFUNC accumulates the wrapped per-row UUIDs; the FFUNC is then a plain fold building the final gate_arith root (PLUS / TIMES / MAX / MIN). The RV-returning aggregates currently shipped – sum, avg, product, max, min – share an INITCOND = '{}' so the FFUNC runs even on an empty group, with per-aggregate empty-group identities.

This is the semimodule-of-mixtures shape: rather than minting a new M-polymorphic gate_agg that would require parallel evaluation paths in every analytical evaluator, the rewrite composes through the existing gate_arith / gate_mixture rules. See Continuous Distributions for the FFUNC details.

Step-by-Step: Adding a New Aggregate

As a running example, assume we want to add bit_and – the bitwise-AND of all non-null integer values in a group. The mechanics are independent of which aggregate you are adding; the only design point is the C++ accumulator that knows how to combine the values incrementally.

  1. Add an enum value. In Aggregation.h, extend AggregationOperator:

    enum class AggregationOperator {
      COUNT, SUM, MIN, MAX, AVG,
      AND, OR,
      CHOOSE, ARRAY_AGG,
      BIT_AND,     // new
      NONE,
    };
    
  2. Map the PostgreSQL function name to the enum. In Aggregation.cpp, extend getAggregationOperator with a case matching the PostgreSQL function name returned by get_func_name():

    } else if(func_name == "bit_and") {
      op = AggregationOperator::BIT_AND;
    

    Each PostgreSQL aggregate function with distinct semantics needs its own enum value and accumulator; aliases with identical semantics (e.g. stddev / stddev_samp) can share one.

  3. Implement the accumulator. Add a templated Aggregator subclass in Aggregation.cpp next to the existing ones (SumAgg, MinAgg, AvgAgg, etc.). The interface is three virtual methods (resultType() defaults to inputType()):

    template <typename T>
    struct BitAndAgg : Aggregator {
      T acc = ~T{0};  // all-ones identity
      bool has = false;
      void add(const AggValue& x) override {
        if (x.getType() == ValueType::NONE) return;
        acc &= std::get<T>(x.v);
        has = true;
      }
      AggValue finalize() const override {
        return has ? AggValue{acc} : AggValue{};
      }
      ValueType inputType() const override { return ValueType::INT; }
    };
    

    An accumulator is only warranted for an aggregate the sampler / enumerator must evaluate on concrete values; an aggregate whose HAVING semantics are resolved by the m-semiring rewrite (like the boolean aggregates and array_agg) needs only the enum value and routing in having_semantics.cpp.

  4. Instantiate the accumulator. Extend makeAggregator in Aggregation.cpp with a case that creates the right template instantiation for each supported input type:

    case AggregationOperator::BIT_AND:
      switch (t) {
        case ValueType::INT: return std::make_unique<BitAndAgg<long>>();
        default:
          throw std::runtime_error("BIT_AND not supported for this type");
      }
    
  5. Add a regression test. Create test/sql/agg_bit_and.sql and its expected output, following the pattern of the existing aggregation tests. Reference it from test/schedule.common (see Testing and Build System for the schedule conventions).

  6. Update the user guide. Mention the new aggregate in Aggregation and Grouping, and add it to the list of currently supported operators in the “Currently Supported Aggregates” section above.

Nothing else needs to change: the query rewriter, the provenance_aggregate SQL function, and the agg_token composite type all operate on OIDs and metadata, so they pick up new aggregates automatically once steps 1–4 are in place.

CASE over aggregates

A searched CASE whose branches are aggregates lowers to a gate_case carried by an agg_token – the aggregate-carrier counterpart of the RV-carrier CASE (Continuous Distributions). The gate type is carrier-agnostic (its branch types discriminate the carrier), so no new gate or on-disk change is needed.

Planner lowering (provsql.c). Unlike the RV pass, which runs early, the aggregate-CASE rewrite (rewrite_agg_cases) must run after replace_aggregations_by_provenance_aggregate – only then are the branch sum(y) / guard sum(x) > 3 lowered to agg_token and an agg comparison. It runs before insert_agg_token_casts so the result stays an agg_token (rather than being cast to numeric, which would drop the provenance). build_agg_case mirrors build_rv_case but lowers each guard with having_Expr_to_provenance_cmp (the same evaluator as a HAVING comparison, which the RV path’s predicate_to_condition_gate cannot reach post-lowering because it dispatches on the now-absent Aggref), and casts each branch value agg_token -> uuid (a constant branch is lifted with agg_value_gate, the agg-side as_random). It emits agg_case(uuid[]).

Degradation when the lowering does not apply. A CASE the rewrite leaves alone – the simple form CASE <arg> WHEN ..., a shape build_agg_case declines, or a schema whose upgrade path predates agg_case (OID_FUNCTION_AGG_CASE invalid) – still carries agg_token-typed branches under the original (e.g. numeric) CASE type. cast_agg_token_mutator therefore has a CaseExpr arm that casts such branches back to the CASE’s result type (their actual-world values, with the provenance-loss warning). This is load-bearing: a bare 117-byte fixed-length agg_token datum left under a varlena-typed CASE would be reinterpreted as a varlena whose “length” is UUID text bytes – a server crash in tts_virtual_materialize or silent tuple corruption.

Exact evaluation (agg_raw_moment). A case gate is handled by the conditional-on-defined possible-worlds identity E[\text{pick}^k \mid \text{defined}] =
\sum_i \Pr(R_i \wedge d_i)\,E[\text{value}_i^k \mid R_i \wedge d_i] /
\sum_i \Pr(R_i \wedge d_i) over the first-match regions R_i (built with provenance_times / provenance_not), each conjoined with the branch’s defined event d_i (agg_defined_event: gate_one for sum / count / constants, whose empty group is the real value 0; “some contributing row present” – the OR of the semimod children’s row tokens – for min / max / avg, which are NULL on an empty group; recursive for a nested CASE). The moment therefore conditions on the CASE’s value being defined, matching the bare MIN / MAX convention, and returns NULL only when the defined mass is zero; when every branch is defined everywhere the defined mass equals \Pr(\text{prov}) and the formula reduces to the plain region-weighted sum. Both factors reuse existing exact machinery – the Boolean probability of the region-and-defined event and a recursive conditional agg_raw_moment of the branch (whose MIN / MAX / CASE arms condition on their own definedness within the region, so the two factors weigh the same worlds) – so no new possible-worlds enumeration is written; the regions are mutually exclusive, so the terms sum without inclusion–exclusion. Per branch: a constant is a Dirac (c^k), a single aggregate or nested CASE is exact via agg_raw_moment, and an arithmetic / composite / avg branch falls back to the Monte-Carlo scalar path (rv_moment), which composes gate_case with the aggregate leaves. The MC sampler already handles gate_case + gate_agg with no change.

AVG moments (agg_raw_moment’s avg arm). AVG = SUM/COUNT is a ratio of two correlated world-dependent quantities, so the SUM arm’s k-tuple expansion does not apply. The exact arm (agg_avg_moment_exact -> aggAvgRawMomentExact in AggMarginalEvaluator.cpp) computes E[\text{AVG}^k \mid \text{COUNT} \ge 1] =
\sum_{(s,c),\,c\ge 1} (s/c)^k\,\text{pmf}(s,c) / \Pr(c \ge 1) from the joint (\text{sum}, \text{count}) distribution – the sumCountPMF machinery the HAVING comparison pre-pass already uses, now templated on the weight type (the integral instantiation keeps the HAVING path byte-identical; the double instantiation shares the independent-fold and laminar-shared-root branches, so join-anchored groups stay exact, and self-gates on the integer-only additive-separation product branch). Any out-of-scope shape – an outer conditioning event, shared leaves beyond the laminar class, compound contributors – falls back to the Monte-Carlo scalar path, whose NaN-skip on empty draws implements the same conditional-on-defined convention.

Display. The token’s cell carries the actual-world CASE value, like any aggregate’s cell: agg_case resolves it through the circuit with agg_gate_value (agg / arith / value gates read their recorded extra; a case walks its guards first-match via agg_guard_holds, which evaluates each cmp gate on its operands’ deterministic values under the operator recorded in info1, with Kleene AND/OR for times / plus combinations). agg_token_value_text uses the same walker for case / conditioned / semimod / value roots, so every aggregate-carrying token renders as value (*) – both in psql cells and in Studio result tables (which recover the display from the bare UUID).

Open: closed-form moments for arithmetic-combination branches (inherits the bare sum(x) + sum(y) limitation).