1 -- @tag: first_aggregator
2 -- @description: SQL Aggregat Funktion FIRST
3 -- @depends: release_3_0_0
5 CREATE OR REPLACE FUNCTION public.first_agg ( anyelement, anyelement )
6 RETURNS anyelement LANGUAGE SQL IMMUTABLE STRICT AS $$
10 CREATE AGGREGATE public.FIRST (
11 sfunc = public.first_agg,
12 basetype = anyelement,