diff options
author | Neil Conway | 2004-04-21 21:52:41 +0000 |
---|---|---|
committer | Neil Conway | 2004-04-21 21:52:41 +0000 |
commit | 490684190182a6938514cbc2eafbf163a91f6d81 (patch) | |
tree | f62e184c270bc1e85d49c4cd2b1c8146b6c30ee5 /doc/src | |
parent | f9a2d0b2fbf256c4941860aa78ae00348b039ce3 (diff) |
Minor improvement to CREATE AGGREGATE docs: add an xref to the docs for
builtin aggregate functions.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_aggregate.sgml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/src/sgml/ref/create_aggregate.sgml b/doc/src/sgml/ref/create_aggregate.sgml index 0a991619ea2..e3098538fac 100644 --- a/doc/src/sgml/ref/create_aggregate.sgml +++ b/doc/src/sgml/ref/create_aggregate.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/create_aggregate.sgml,v 1.29 2003/11/29 19:51:38 pgsql Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/create_aggregate.sgml,v 1.30 2004/04/21 21:52:41 neilc Exp $ PostgreSQL documentation --> @@ -34,12 +34,12 @@ CREATE AGGREGATE <replaceable class="PARAMETER">name</replaceable> ( <title>Description</title> <para> - <command>CREATE AGGREGATE</command> defines a new aggregate function. Some aggregate functions - for base types such as <function>min(integer)</function> - and <function>avg(double precision)</function> are already provided in the standard - distribution. If one defines new types or needs an aggregate function not - already provided, then <command>CREATE AGGREGATE</command> - can be used to provide the desired features. + <command>CREATE AGGREGATE</command> defines a new aggregate + function. Some basic and commonly-used aggregate functions are + included with the distribution; they are documented in <xref + linkend="functions-aggregate">. If one defines new types or needs + an aggregate function not already provided, then <command>CREATE + AGGREGATE</command> can be used to provide the desired features. </para> <para> |