Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-updates > by-pkgid > 5fea23694c765462b86d6ddf74461eab > files > 794

postgresql9.6-docs-9.6.22-1.mga7.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>CREATE AGGREGATE</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:pgsql-docs@postgresql.org"><LINK
REL="HOME"
TITLE="PostgreSQL 9.6.22 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="SQL Commands"
HREF="sql-commands.html"><LINK
REL="PREVIOUS"
TITLE="CREATE ACCESS METHOD"
HREF="sql-create-access-method.html"><LINK
REL="NEXT"
TITLE="CREATE CAST"
HREF="sql-createcast.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2021-05-18T09:16:10"></HEAD
><BODY
CLASS="REFENTRY"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="4"
ALIGN="center"
VALIGN="bottom"
><A
HREF="index.html"
>PostgreSQL 9.6.22 Documentation</A
></TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
TITLE="CREATE ACCESS METHOD"
HREF="sql-create-access-method.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-commands.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="20%"
ALIGN="right"
VALIGN="top"
><A
TITLE="CREATE CAST"
HREF="sql-createcast.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="SQL-CREATEAGGREGATE"
></A
>CREATE AGGREGATE</H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN78821"
></A
><H2
>Name</H2
>CREATE AGGREGATE&nbsp;--&nbsp;define a new aggregate function</DIV
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN78824"
></A
><H2
>Synopsis</H2
><PRE
CLASS="SYNOPSIS"
>CREATE AGGREGATE <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
> ( [ <TT
CLASS="REPLACEABLE"
><I
>argmode</I
></TT
> ] [ <TT
CLASS="REPLACEABLE"
><I
>argname</I
></TT
> ] <TT
CLASS="REPLACEABLE"
><I
>arg_data_type</I
></TT
> [ , ... ] ) (
    SFUNC = <TT
CLASS="REPLACEABLE"
><I
>sfunc</I
></TT
>,
    STYPE = <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>
    [ , SSPACE = <TT
CLASS="REPLACEABLE"
><I
>state_data_size</I
></TT
> ]
    [ , FINALFUNC = <TT
CLASS="REPLACEABLE"
><I
>ffunc</I
></TT
> ]
    [ , FINALFUNC_EXTRA ]
    [ , COMBINEFUNC = <TT
CLASS="REPLACEABLE"
><I
>combinefunc</I
></TT
> ]
    [ , SERIALFUNC = <TT
CLASS="REPLACEABLE"
><I
>serialfunc</I
></TT
> ]
    [ , DESERIALFUNC = <TT
CLASS="REPLACEABLE"
><I
>deserialfunc</I
></TT
> ]
    [ , INITCOND = <TT
CLASS="REPLACEABLE"
><I
>initial_condition</I
></TT
> ]
    [ , MSFUNC = <TT
CLASS="REPLACEABLE"
><I
>msfunc</I
></TT
> ]
    [ , MINVFUNC = <TT
CLASS="REPLACEABLE"
><I
>minvfunc</I
></TT
> ]
    [ , MSTYPE = <TT
CLASS="REPLACEABLE"
><I
>mstate_data_type</I
></TT
> ]
    [ , MSSPACE = <TT
CLASS="REPLACEABLE"
><I
>mstate_data_size</I
></TT
> ]
    [ , MFINALFUNC = <TT
CLASS="REPLACEABLE"
><I
>mffunc</I
></TT
> ]
    [ , MFINALFUNC_EXTRA ]
    [ , MINITCOND = <TT
CLASS="REPLACEABLE"
><I
>minitial_condition</I
></TT
> ]
    [ , SORTOP = <TT
CLASS="REPLACEABLE"
><I
>sort_operator</I
></TT
> ]
    [ , PARALLEL = { SAFE | RESTRICTED | UNSAFE } ]
)

CREATE AGGREGATE <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
> ( [ [ <TT
CLASS="REPLACEABLE"
><I
>argmode</I
></TT
> ] [ <TT
CLASS="REPLACEABLE"
><I
>argname</I
></TT
> ] <TT
CLASS="REPLACEABLE"
><I
>arg_data_type</I
></TT
> [ , ... ] ]
                        ORDER BY [ <TT
CLASS="REPLACEABLE"
><I
>argmode</I
></TT
> ] [ <TT
CLASS="REPLACEABLE"
><I
>argname</I
></TT
> ] <TT
CLASS="REPLACEABLE"
><I
>arg_data_type</I
></TT
> [ , ... ] ) (
    SFUNC = <TT
CLASS="REPLACEABLE"
><I
>sfunc</I
></TT
>,
    STYPE = <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>
    [ , SSPACE = <TT
CLASS="REPLACEABLE"
><I
>state_data_size</I
></TT
> ]
    [ , FINALFUNC = <TT
CLASS="REPLACEABLE"
><I
>ffunc</I
></TT
> ]
    [ , FINALFUNC_EXTRA ]
    [ , INITCOND = <TT
CLASS="REPLACEABLE"
><I
>initial_condition</I
></TT
> ]
    [ , PARALLEL = { SAFE | RESTRICTED | UNSAFE } ]
    [ , HYPOTHETICAL ]
)

<SPAN
CLASS="phrase"
><SPAN
CLASS="PHRASE"
>or the old syntax</SPAN
></SPAN
>

CREATE AGGREGATE <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
> (
    BASETYPE = <TT
CLASS="REPLACEABLE"
><I
>base_type</I
></TT
>,
    SFUNC = <TT
CLASS="REPLACEABLE"
><I
>sfunc</I
></TT
>,
    STYPE = <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>
    [ , SSPACE = <TT
CLASS="REPLACEABLE"
><I
>state_data_size</I
></TT
> ]
    [ , FINALFUNC = <TT
CLASS="REPLACEABLE"
><I
>ffunc</I
></TT
> ]
    [ , FINALFUNC_EXTRA ]
    [ , COMBINEFUNC = <TT
CLASS="REPLACEABLE"
><I
>combinefunc</I
></TT
> ]
    [ , SERIALFUNC = <TT
CLASS="REPLACEABLE"
><I
>serialfunc</I
></TT
> ]
    [ , DESERIALFUNC = <TT
CLASS="REPLACEABLE"
><I
>deserialfunc</I
></TT
> ]
    [ , INITCOND = <TT
CLASS="REPLACEABLE"
><I
>initial_condition</I
></TT
> ]
    [ , MSFUNC = <TT
CLASS="REPLACEABLE"
><I
>msfunc</I
></TT
> ]
    [ , MINVFUNC = <TT
CLASS="REPLACEABLE"
><I
>minvfunc</I
></TT
> ]
    [ , MSTYPE = <TT
CLASS="REPLACEABLE"
><I
>mstate_data_type</I
></TT
> ]
    [ , MSSPACE = <TT
CLASS="REPLACEABLE"
><I
>mstate_data_size</I
></TT
> ]
    [ , MFINALFUNC = <TT
CLASS="REPLACEABLE"
><I
>mffunc</I
></TT
> ]
    [ , MFINALFUNC_EXTRA ]
    [ , MINITCOND = <TT
CLASS="REPLACEABLE"
><I
>minitial_condition</I
></TT
> ]
    [ , SORTOP = <TT
CLASS="REPLACEABLE"
><I
>sort_operator</I
></TT
> ]
)</PRE
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN78875"
></A
><H2
>Description</H2
><P
>   <TT
CLASS="COMMAND"
>CREATE AGGREGATE</TT
> defines a new aggregate
   function. Some basic and commonly-used aggregate functions are
   included with the distribution; they are documented in <A
HREF="functions-aggregate.html"
>Section 9.20</A
>. If one defines new types or needs
   an aggregate function not already provided, then <TT
CLASS="COMMAND"
>CREATE
   AGGREGATE</TT
> can be used to provide the desired features.
  </P
><P
>   If a schema name is given (for example, <TT
CLASS="LITERAL"
>CREATE AGGREGATE
   myschema.myagg ...</TT
>) then the aggregate function is created in the
   specified schema.  Otherwise it is created in the current schema.
  </P
><P
>   An aggregate function is identified by its name and input data type(s).
   Two aggregates in the same schema can have the same name if they operate on
   different input types.  The
   name and input data type(s) of an aggregate must also be distinct from
   the name and input data type(s) of every ordinary function in the same
   schema.
   This behavior is identical to overloading of ordinary function names
   (see <A
HREF="sql-createfunction.html"
>CREATE FUNCTION</A
>).
  </P
><P
>   A simple aggregate function is made from one or two ordinary
   functions:
   a state transition function
   <TT
CLASS="REPLACEABLE"
><I
>sfunc</I
></TT
>,
   and an optional final calculation function
   <TT
CLASS="REPLACEABLE"
><I
>ffunc</I
></TT
>.
   These are used as follows:
</P><PRE
CLASS="PROGRAMLISTING"
><TT
CLASS="REPLACEABLE"
><I
>sfunc</I
></TT
>( internal-state, next-data-values ) ---&#62; next-internal-state
<TT
CLASS="REPLACEABLE"
><I
>ffunc</I
></TT
>( internal-state ) ---&#62; aggregate-value</PRE
><P>
  </P
><P
>   <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> creates a temporary variable
   of data type <TT
CLASS="REPLACEABLE"
><I
>stype</I
></TT
>
   to hold the current internal state of the aggregate.  At each input row,
   the aggregate argument value(s) are calculated and
   the state transition function is invoked with the current state value
   and the new argument value(s) to calculate a new
   internal state value.  After all the rows have been processed,
   the final function is invoked once to calculate the aggregate's return
   value.  If there is no final function then the ending state value
   is returned as-is.
  </P
><P
>   An aggregate function can provide an initial condition,
   that is, an initial value for the internal state value.
   This is specified and stored in the database as a value of type
   <TT
CLASS="TYPE"
>text</TT
>, but it must be a valid external representation
   of a constant of the state value data type.  If it is not supplied
   then the state value starts out null.
  </P
><P
>   If the state transition function is declared <SPAN
CLASS="QUOTE"
>"strict"</SPAN
>,
   then it cannot be called with null inputs.  With such a transition
   function, aggregate execution behaves as follows.  Rows with any null input
   values are ignored (the function is not called and the previous state value
   is retained).  If the initial state value is null, then at the first row
   with all-nonnull input values, the first argument value replaces the state
   value, and the transition function is invoked at each subsequent row with
   all-nonnull input values.
   This is handy for implementing aggregates like <CODE
CLASS="FUNCTION"
>max</CODE
>.
   Note that this behavior is only available when
   <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>
   is the same as the first
   <TT
CLASS="REPLACEABLE"
><I
>arg_data_type</I
></TT
>.
   When these types are different, you must supply a nonnull initial
   condition or use a nonstrict transition function.
  </P
><P
>   If the state transition function is not strict, then it will be called
   unconditionally at each input row, and must deal with null inputs
   and null state values for itself.  This allows the aggregate
   author to have full control over the aggregate's handling of null values.
  </P
><P
>   If the final function is declared <SPAN
CLASS="QUOTE"
>"strict"</SPAN
>, then it will not
   be called when the ending state value is null; instead a null result
   will be returned automatically.  (Of course this is just the normal
   behavior of strict functions.)  In any case the final function has
   the option of returning a null value.  For example, the final function for
   <CODE
CLASS="FUNCTION"
>avg</CODE
> returns null when it sees there were zero
   input rows.
  </P
><P
>   Sometimes it is useful to declare the final function as taking not just
   the state value, but extra parameters corresponding to the aggregate's
   input values.  The main reason for doing this is if the final function
   is polymorphic and the state value's data type would be inadequate to
   pin down the result type.  These extra parameters are always passed as
   NULL (and so the final function must not be strict when
   the <TT
CLASS="LITERAL"
>FINALFUNC_EXTRA</TT
> option is used), but nonetheless they
   are valid parameters.  The final function could for example make use
   of <CODE
CLASS="FUNCTION"
>get_fn_expr_argtype</CODE
> to identify the actual argument type
   in the current call.
  </P
><P
>   An aggregate can optionally support <I
CLASS="FIRSTTERM"
>moving-aggregate mode</I
>,
   as described in <A
HREF="xaggr.html#XAGGR-MOVING-AGGREGATES"
>Section 36.10.1</A
>.  This requires
   specifying the <TT
CLASS="LITERAL"
>MSFUNC</TT
>, <TT
CLASS="LITERAL"
>MINVFUNC</TT
>,
   and <TT
CLASS="LITERAL"
>MSTYPE</TT
> parameters, and optionally
   the <TT
CLASS="LITERAL"
>MSSPACE</TT
>, <TT
CLASS="LITERAL"
>MFINALFUNC</TT
>, <TT
CLASS="LITERAL"
>MFINALFUNC_EXTRA</TT
>,
   and <TT
CLASS="LITERAL"
>MINITCOND</TT
> parameters.  Except for <TT
CLASS="LITERAL"
>MINVFUNC</TT
>,
   these parameters work like the corresponding simple-aggregate parameters
   without <TT
CLASS="LITERAL"
>M</TT
>; they define a separate implementation of the
   aggregate that includes an inverse transition function.
  </P
><P
>   The syntax with <TT
CLASS="LITERAL"
>ORDER BY</TT
> in the parameter list creates
   a special type of aggregate called an <I
CLASS="FIRSTTERM"
>ordered-set
   aggregate</I
>; or if <TT
CLASS="LITERAL"
>HYPOTHETICAL</TT
> is specified, then
   a <I
CLASS="FIRSTTERM"
>hypothetical-set aggregate</I
> is created.  These
   aggregates operate over groups of sorted values in order-dependent ways,
   so that specification of an input sort order is an essential part of a
   call.  Also, they can have <I
CLASS="FIRSTTERM"
>direct</I
> arguments, which are
   arguments that are evaluated only once per aggregation rather than once
   per input row.  Hypothetical-set aggregates are a subclass of ordered-set
   aggregates in which some of the direct arguments are required to match,
   in number and data types, the aggregated argument columns.  This allows
   the values of those direct arguments to be added to the collection of
   aggregate-input rows as an additional <SPAN
CLASS="QUOTE"
>"hypothetical"</SPAN
> row.
  </P
><P
>   An aggregate can optionally support <I
CLASS="FIRSTTERM"
>partial aggregation</I
>,
   as described in <A
HREF="xaggr.html#XAGGR-PARTIAL-AGGREGATES"
>Section 36.10.4</A
>.
   This requires specifying the <TT
CLASS="LITERAL"
>COMBINEFUNC</TT
> parameter.
   If the <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>
   is <TT
CLASS="TYPE"
>internal</TT
>, it's usually also appropriate to provide the
   <TT
CLASS="LITERAL"
>SERIALFUNC</TT
> and <TT
CLASS="LITERAL"
>DESERIALFUNC</TT
> parameters so that
   parallel aggregation is possible.  Note that the aggregate must also be
   marked <TT
CLASS="LITERAL"
>PARALLEL SAFE</TT
> to enable parallel aggregation.
  </P
><P
>   Aggregates that behave like <CODE
CLASS="FUNCTION"
>MIN</CODE
> or <CODE
CLASS="FUNCTION"
>MAX</CODE
> can
   sometimes be optimized by looking into an index instead of scanning every
   input row.  If this aggregate can be so optimized, indicate it by
   specifying a <I
CLASS="FIRSTTERM"
>sort operator</I
>.  The basic requirement is that
   the aggregate must yield the first element in the sort ordering induced by
   the operator; in other words:
</P><PRE
CLASS="PROGRAMLISTING"
>SELECT agg(col) FROM tab;</PRE
><P>
   must be equivalent to:
</P><PRE
CLASS="PROGRAMLISTING"
>SELECT col FROM tab ORDER BY col USING sortop LIMIT 1;</PRE
><P>
   Further assumptions are that the aggregate ignores null inputs, and that
   it delivers a null result if and only if there were no non-null inputs.
   Ordinarily, a data type's <TT
CLASS="LITERAL"
>&lt;</TT
> operator is the proper sort
   operator for <CODE
CLASS="FUNCTION"
>MIN</CODE
>, and <TT
CLASS="LITERAL"
>&gt;</TT
> is the proper sort
   operator for <CODE
CLASS="FUNCTION"
>MAX</CODE
>.  Note that the optimization will never
   actually take effect unless the specified operator is the <SPAN
CLASS="QUOTE"
>"less
   than"</SPAN
> or <SPAN
CLASS="QUOTE"
>"greater than"</SPAN
> strategy member of a B-tree
   index operator class.
  </P
><P
>   To be able to create an aggregate function, you must
   have <TT
CLASS="LITERAL"
>USAGE</TT
> privilege on the argument types, the state
   type(s), and the return type, as well as <TT
CLASS="LITERAL"
>EXECUTE</TT
>
   privilege on the supporting functions.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN78951"
></A
><H2
>Parameters</H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
></DT
><DD
><P
>      The name (optionally schema-qualified) of the aggregate function
      to create.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>argmode</I
></TT
></DT
><DD
><P
>      The mode of an argument: <TT
CLASS="LITERAL"
>IN</TT
> or <TT
CLASS="LITERAL"
>VARIADIC</TT
>.
      (Aggregate functions do not support <TT
CLASS="LITERAL"
>OUT</TT
> arguments.)
      If omitted, the default is <TT
CLASS="LITERAL"
>IN</TT
>.  Only the last argument
      can be marked <TT
CLASS="LITERAL"
>VARIADIC</TT
>.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>argname</I
></TT
></DT
><DD
><P
>      The name of an argument.  This is currently only useful for
      documentation purposes.  If omitted, the argument has no name.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>arg_data_type</I
></TT
></DT
><DD
><P
>      An input data type on which this aggregate function operates.
      To create a zero-argument aggregate function, write <TT
CLASS="LITERAL"
>*</TT
>
      in place of the list of argument specifications.  (An example of such an
      aggregate is <CODE
CLASS="FUNCTION"
>count(*)</CODE
>.)
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>base_type</I
></TT
></DT
><DD
><P
>      In the old syntax for <TT
CLASS="COMMAND"
>CREATE AGGREGATE</TT
>, the input data type
      is specified by a <TT
CLASS="LITERAL"
>basetype</TT
> parameter rather than being
      written next to the aggregate name.  Note that this syntax allows
      only one input parameter.  To define a zero-argument aggregate function
      with this syntax, specify the <TT
CLASS="LITERAL"
>basetype</TT
> as
      <TT
CLASS="LITERAL"
>"ANY"</TT
> (not <TT
CLASS="LITERAL"
>*</TT
>).
      Ordered-set aggregates cannot be defined with the old syntax.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>sfunc</I
></TT
></DT
><DD
><P
>      The name of the state transition function to be called for each
      input row.  For a normal <TT
CLASS="REPLACEABLE"
><I
>N</I
></TT
>-argument
      aggregate function, the <TT
CLASS="REPLACEABLE"
><I
>sfunc</I
></TT
>
      must take <TT
CLASS="REPLACEABLE"
><I
>N</I
></TT
>+1 arguments,
      the first being of type <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
> and the rest
      matching the declared input data type(s) of the aggregate.
      The function must return a value of type <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>.  This function
      takes the current state value and the current input data value(s),
      and returns the next state value.
     </P
><P
>      For ordered-set (including hypothetical-set) aggregates, the state
      transition function receives only the current state value and the
      aggregated arguments, not the direct arguments.  Otherwise it is the
      same.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
></DT
><DD
><P
>      The data type for the aggregate's state value.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>state_data_size</I
></TT
></DT
><DD
><P
>      The approximate average size (in bytes) of the aggregate's state value.
      If this parameter is omitted or is zero, a default estimate is used
      based on the <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>.
      The planner uses this value to estimate the memory required for a
      grouped aggregate query.  The planner will consider using hash
      aggregation for such a query only if the hash table is estimated to fit
      in <A
HREF="runtime-config-resource.html#GUC-WORK-MEM"
>work_mem</A
>; therefore, large values of this
      parameter discourage use of hash aggregation.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>ffunc</I
></TT
></DT
><DD
><P
>      The name of the final function called to compute the aggregate's
      result after all input rows have been traversed.
      For a normal aggregate, this function
      must take a single argument of type <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>.  The return
      data type of the aggregate is defined as the return type of this
      function.  If <TT
CLASS="REPLACEABLE"
><I
>ffunc</I
></TT
>
      is not specified, then the ending state value is used as the
      aggregate's result, and the return type is <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>.
     </P
><P
>      For ordered-set (including hypothetical-set) aggregates, the
      final function receives not only the final state value,
      but also the values of all the direct arguments.
     </P
><P
>      If <TT
CLASS="LITERAL"
>FINALFUNC_EXTRA</TT
> is specified, then in addition to the
      final state value and any direct arguments, the final function
      receives extra NULL values corresponding to the aggregate's regular
      (aggregated) arguments.  This is mainly useful to allow correct
      resolution of the aggregate result type when a polymorphic aggregate
      is being defined.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>combinefunc</I
></TT
></DT
><DD
><P
>      The <TT
CLASS="REPLACEABLE"
><I
>combinefunc</I
></TT
> function
      may optionally be specified to allow the aggregate function to support
      partial aggregation.  If provided,
      the <TT
CLASS="REPLACEABLE"
><I
>combinefunc</I
></TT
> must
      combine two <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>
      values, each containing the result of aggregation over some subset of
      the input values, to produce a
      new <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
> that
      represents the result of aggregating over both sets of inputs.  This
      function can be thought of as
      an <TT
CLASS="REPLACEABLE"
><I
>sfunc</I
></TT
>, where instead of
      acting upon an individual input row and adding it to the running
      aggregate state, it adds another aggregate state to the running state.
     </P
><P
>      The <TT
CLASS="REPLACEABLE"
><I
>combinefunc</I
></TT
> must be
      declared as taking two arguments of
      the <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
> and
      returning a value of
      the <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>.
      Optionally this function may be <SPAN
CLASS="QUOTE"
>"strict"</SPAN
>. In this case the
      function will not be called when either of the input states are null;
      the other state will be taken as the correct result.
     </P
><P
>      For aggregate functions
      whose <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>
      is <TT
CLASS="TYPE"
>internal</TT
>,
      the <TT
CLASS="REPLACEABLE"
><I
>combinefunc</I
></TT
> must not
      be strict. In this case
      the <TT
CLASS="REPLACEABLE"
><I
>combinefunc</I
></TT
> must
      ensure that null states are handled correctly and that the state being
      returned is properly stored in the aggregate memory context.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>serialfunc</I
></TT
></DT
><DD
><P
>      An aggregate function
      whose <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>
      is <TT
CLASS="TYPE"
>internal</TT
> can participate in parallel aggregation only if it
      has a <TT
CLASS="REPLACEABLE"
><I
>serialfunc</I
></TT
> function,
      which must serialize the aggregate state into a <TT
CLASS="TYPE"
>bytea</TT
> value for
      transmission to another process.  This function must take a single
      argument of type <TT
CLASS="TYPE"
>internal</TT
> and return type <TT
CLASS="TYPE"
>bytea</TT
>.  A
      corresponding <TT
CLASS="REPLACEABLE"
><I
>deserialfunc</I
></TT
>
      is also required.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>deserialfunc</I
></TT
></DT
><DD
><P
>      Deserialize a previously serialized aggregate state back into
      <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>. This
      function must take two arguments of types <TT
CLASS="TYPE"
>bytea</TT
>
      and <TT
CLASS="TYPE"
>internal</TT
>, and produce a result of type <TT
CLASS="TYPE"
>internal</TT
>.
      (Note: the second, <TT
CLASS="TYPE"
>internal</TT
> argument is unused, but is required
      for type safety reasons.)
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>initial_condition</I
></TT
></DT
><DD
><P
>      The initial setting for the state value.  This must be a string
      constant in the form accepted for the data type <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>.  If not
      specified, the state value starts out null.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>msfunc</I
></TT
></DT
><DD
><P
>      The name of the forward state transition function to be called for each
      input row in moving-aggregate mode.  This is exactly like the regular
      transition function, except that its first argument and result are of
      type <TT
CLASS="REPLACEABLE"
><I
>mstate_data_type</I
></TT
>, which might be different
      from <TT
CLASS="REPLACEABLE"
><I
>state_data_type</I
></TT
>.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>minvfunc</I
></TT
></DT
><DD
><P
>      The name of the inverse state transition function to be used in
      moving-aggregate mode.  This function has the same argument and
      result types as <TT
CLASS="REPLACEABLE"
><I
>msfunc</I
></TT
>, but it is used to remove
      a value from the current aggregate state, rather than add a value to
      it.  The inverse transition function must have the same strictness
      attribute as the forward state transition function.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>mstate_data_type</I
></TT
></DT
><DD
><P
>      The data type for the aggregate's state value, when using
      moving-aggregate mode.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>mstate_data_size</I
></TT
></DT
><DD
><P
>      The approximate average size (in bytes) of the aggregate's state
      value, when using moving-aggregate mode.  This works the same as
      <TT
CLASS="REPLACEABLE"
><I
>state_data_size</I
></TT
>.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>mffunc</I
></TT
></DT
><DD
><P
>      The name of the final function called to compute the aggregate's
      result after all input rows have been traversed, when using
      moving-aggregate mode.  This works the same as <TT
CLASS="REPLACEABLE"
><I
>ffunc</I
></TT
>,
      except that its first argument's type
      is <TT
CLASS="REPLACEABLE"
><I
>mstate_data_type</I
></TT
> and extra dummy arguments are
      specified by writing <TT
CLASS="LITERAL"
>MFINALFUNC_EXTRA</TT
>.
      The aggregate result type determined by <TT
CLASS="REPLACEABLE"
><I
>mffunc</I
></TT
>
      or <TT
CLASS="REPLACEABLE"
><I
>mstate_data_type</I
></TT
> must match that determined by the
      aggregate's regular implementation.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>minitial_condition</I
></TT
></DT
><DD
><P
>      The initial setting for the state value, when using moving-aggregate
      mode.  This works the same as <TT
CLASS="REPLACEABLE"
><I
>initial_condition</I
></TT
>.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>sort_operator</I
></TT
></DT
><DD
><P
>      The associated sort operator for a <CODE
CLASS="FUNCTION"
>MIN</CODE
>- or
      <CODE
CLASS="FUNCTION"
>MAX</CODE
>-like aggregate.
      This is just an operator name (possibly schema-qualified).
      The operator is assumed to have the same input data types as
      the aggregate (which must be a single-argument normal aggregate).
     </P
></DD
><DT
><TT
CLASS="LITERAL"
>PARALLEL</TT
></DT
><DD
><P
>      The meanings of <TT
CLASS="LITERAL"
>PARALLEL SAFE</TT
>, <TT
CLASS="LITERAL"
>PARALLEL
      RESTRICTED</TT
>, and <TT
CLASS="LITERAL"
>PARALLEL UNSAFE</TT
> are the same as
      for <A
HREF="sql-createfunction.html"
>CREATE FUNCTION</A
>.  An aggregate will not be
      considered for parallelization if it is marked <TT
CLASS="LITERAL"
>PARALLEL
      UNSAFE</TT
> (which is the default!) or <TT
CLASS="LITERAL"
>PARALLEL RESTRICTED</TT
>.
      Note that the parallel-safety markings of the aggregate's support
      functions are not consulted by the planner, only the marking of the
      aggregate itself.
     </P
></DD
><DT
><TT
CLASS="LITERAL"
>HYPOTHETICAL</TT
></DT
><DD
><P
>      For ordered-set aggregates only, this flag specifies that the aggregate
      arguments are to be processed according to the requirements for
      hypothetical-set aggregates: that is, the last few direct arguments must
      match the data types of the aggregated (<TT
CLASS="LITERAL"
>WITHIN GROUP</TT
>)
      arguments.  The <TT
CLASS="LITERAL"
>HYPOTHETICAL</TT
> flag has no effect on
      run-time behavior, only on parse-time resolution of the data types and
      collations of the aggregate's arguments.
     </P
></DD
></DL
></DIV
><P
>   The parameters of <TT
CLASS="COMMAND"
>CREATE AGGREGATE</TT
> can be
   written in any order, not just the order illustrated above.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN79140"
></A
><H2
>Notes</H2
><P
>    In parameters that specify support function names, you can write
    a schema name if needed, for example <TT
CLASS="LITERAL"
>SFUNC = public.sum</TT
>.
    Do not write argument types there, however &mdash; the argument types
    of the support functions are determined from other parameters.
   </P
><P
>    If an aggregate supports moving-aggregate mode, it will improve
    calculation efficiency when the aggregate is used as a window function
    for a window with moving frame start (that is, a frame start mode other
    than <TT
CLASS="LITERAL"
>UNBOUNDED PRECEDING</TT
>).  Conceptually, the forward
    transition function adds input values to the aggregate's state when
    they enter the window frame from the bottom, and the inverse transition
    function removes them again when they leave the frame at the top.  So,
    when values are removed, they are always removed in the same order they
    were added.  Whenever the inverse transition function is invoked, it will
    thus receive the earliest added but not yet removed argument value(s).
    The inverse transition function can assume that at least one row will
    remain in the current state after it removes the oldest row.  (When this
    would not be the case, the window function mechanism simply starts a
    fresh aggregation, rather than using the inverse transition function.)
   </P
><P
>    The forward transition function for moving-aggregate mode is not
    allowed to return NULL as the new state value. If the inverse
    transition function returns NULL, this is taken as an indication that
    the inverse function cannot reverse the state calculation for this
    particular input, and so the aggregate calculation will be redone from
    scratch for the current frame starting position.  This convention
    allows moving-aggregate mode to be used in situations where there are
    some infrequent cases that are impractical to reverse out of the
    running state value.
   </P
><P
>    If no moving-aggregate implementation is supplied,
    the aggregate can still be used with moving frames,
    but <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> will recompute the whole
    aggregation whenever the start of the frame moves.
    Note that whether or not the aggregate supports moving-aggregate
    mode, <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> can handle a moving frame
    end without recalculation; this is done by continuing to add new values
    to the aggregate's state.  It is assumed that the final function does
    not damage the aggregate's state value, so that the aggregation can be
    continued even after an aggregate result value has been obtained for
    one set of frame boundaries.
   </P
><P
>    The syntax for ordered-set aggregates allows <TT
CLASS="LITERAL"
>VARIADIC</TT
>
    to be specified for both the last direct parameter and the last
    aggregated (<TT
CLASS="LITERAL"
>WITHIN GROUP</TT
>) parameter.  However, the
    current implementation restricts use of <TT
CLASS="LITERAL"
>VARIADIC</TT
>
    in two ways.  First, ordered-set aggregates can only use
    <TT
CLASS="LITERAL"
>VARIADIC "any"</TT
>, not other variadic array types.
    Second, if the last direct parameter is <TT
CLASS="LITERAL"
>VARIADIC "any"</TT
>,
    then there can be only one aggregated parameter and it must also
    be <TT
CLASS="LITERAL"
>VARIADIC "any"</TT
>.  (In the representation used in the
    system catalogs, these two parameters are merged into a single
    <TT
CLASS="LITERAL"
>VARIADIC "any"</TT
> item, since <TT
CLASS="STRUCTNAME"
>pg_proc</TT
> cannot
    represent functions with more than one <TT
CLASS="LITERAL"
>VARIADIC</TT
> parameter.)
    If the aggregate is a hypothetical-set aggregate, the direct arguments
    that match the <TT
CLASS="LITERAL"
>VARIADIC "any"</TT
> parameter are the hypothetical
    ones; any preceding parameters represent additional direct arguments
    that are not constrained to match the aggregated arguments.
   </P
><P
>    Currently, ordered-set aggregates do not need to support
    moving-aggregate mode, since they cannot be used as window functions.
   </P
><P
>    Partial (including parallel) aggregation is currently not supported for
    ordered-set aggregates.  Also, it will never be used for aggregate calls
    that include <TT
CLASS="LITERAL"
>DISTINCT</TT
> or <TT
CLASS="LITERAL"
>ORDER BY</TT
> clauses, since
    those semantics cannot be supported during partial aggregation.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN79165"
></A
><H2
>Examples</H2
><P
>   See <A
HREF="xaggr.html"
>Section 36.10</A
>.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN79169"
></A
><H2
>Compatibility</H2
><P
>   <TT
CLASS="COMMAND"
>CREATE AGGREGATE</TT
> is a
   <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> language extension.  The SQL
   standard does not provide for user-defined aggregate functions.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN79174"
></A
><H2
>See Also</H2
><A
HREF="sql-alteraggregate.html"
>ALTER AGGREGATE</A
>, <A
HREF="sql-dropaggregate.html"
>DROP AGGREGATE</A
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-create-access-method.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-createcast.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>CREATE ACCESS METHOD</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="sql-commands.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>CREATE CAST</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>