diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-10-21 04:33:39 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-10-21 04:33:39 +0000 |
commit | 210a039d4f8fb88e9db5231d5257b9dc56d28c61 (patch) | |
tree | bf7d582126f7a8d3fe9f5c721e03e34e4aeacced /doc/src | |
parent | 156408e97bc9f197618dff52ac02881ffd917436 (diff) | |
download | postgresql-210a039d4f8fb88e9db5231d5257b9dc56d28c61.tar.gz postgresql-210a039d4f8fb88e9db5231d5257b9dc56d28c61.zip |
Since ANY is a reserved word, better suggest that ANY be quoted when
used for the input type of an aggregate.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_aggregate.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_aggregate.sgml b/doc/src/sgml/ref/create_aggregate.sgml index 93a459b40a4..9024152fb3f 100644 --- a/doc/src/sgml/ref/create_aggregate.sgml +++ b/doc/src/sgml/ref/create_aggregate.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_aggregate.sgml,v 1.21 2002/09/21 18:32:54 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_aggregate.sgml,v 1.22 2002/10/21 04:33:39 tgl Exp $ PostgreSQL documentation --> @@ -52,8 +52,8 @@ CREATE AGGREGATE <replaceable class="PARAMETER">name</replaceable> ( BASETYPE = <listitem> <para> The input data type on which this aggregate function operates. - This can be specified as ANY for an aggregate that does not - examine its input values + This can be specified as <literal>"ANY"</> for an aggregate that does + not examine its input values (an example is <function>count(*)</function>). </para> </listitem> |