diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-07-14 17:59:12 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-07-14 17:59:49 -0400 |
commit | 1be9cdf6aa635a038b37076c29943b7cb262eb4b (patch) | |
tree | 7fbecf7c41a2e47e3d17a3d3742c52f8f947bc57 /doc/src | |
parent | f3ff0433ab32fdc69da3c8f8e691ef6b4366559c (diff) | |
download | postgresql-1be9cdf6aa635a038b37076c29943b7cb262eb4b.tar.gz postgresql-1be9cdf6aa635a038b37076c29943b7cb262eb4b.zip |
In docs, start window function sentence with "The asterisk (*)" rather
than "*"; it is confusing to start a sentence with a symbol.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/syntax.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/syntax.sgml b/doc/src/sgml/syntax.sgml index f6c4a4defa1..9119b60792e 100644 --- a/doc/src/sgml/syntax.sgml +++ b/doc/src/sgml/syntax.sgml @@ -1806,7 +1806,7 @@ UNBOUNDED FOLLOWING The syntaxes using <literal>*</> are used for calling parameter-less aggregate functions as window functions, for example <literal>count(*) OVER (PARTITION BY x ORDER BY y)</>. - <literal>*</> is customarily not used for non-aggregate window functions. + The asterisk (<literal>*</>) is customarily not used for non-aggregate window functions. Aggregate window functions, unlike normal aggregate functions, do not allow <literal>DISTINCT</> or <literal>ORDER BY</> to be used within the function argument list. |