mirror of
https://github.com/postgres/postgres.git
synced 2025-12-21 05:21:08 +03:00
Don't use SGML empty tags
For DocBook XML compatibility, don't use SGML empty tags (</>) anymore, replace by the full tag name. Add a warning option to catch future occurrences. Alexander Lakhin, Jürgen Purtz
This commit is contained in:
@@ -70,8 +70,8 @@ DROP AGGREGATE [ IF EXISTS ] <replaceable>name</replaceable> ( <replaceable>aggr
|
||||
|
||||
<listitem>
|
||||
<para>
|
||||
The mode of an argument: <literal>IN</> or <literal>VARIADIC</>.
|
||||
If omitted, the default is <literal>IN</>.
|
||||
The mode of an argument: <literal>IN</literal> or <literal>VARIADIC</literal>.
|
||||
If omitted, the default is <literal>IN</literal>.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
@@ -94,10 +94,10 @@ DROP AGGREGATE [ IF EXISTS ] <replaceable>name</replaceable> ( <replaceable>aggr
|
||||
<listitem>
|
||||
<para>
|
||||
An input data type on which the aggregate function operates.
|
||||
To reference a zero-argument aggregate function, write <literal>*</>
|
||||
To reference a zero-argument aggregate function, write <literal>*</literal>
|
||||
in place of the list of argument specifications.
|
||||
To reference an ordered-set aggregate function, write
|
||||
<literal>ORDER BY</> between the direct and aggregated argument
|
||||
<literal>ORDER BY</literal> between the direct and aggregated argument
|
||||
specifications.
|
||||
</para>
|
||||
</listitem>
|
||||
@@ -148,7 +148,7 @@ DROP AGGREGATE myavg(integer);
|
||||
</para>
|
||||
|
||||
<para>
|
||||
To remove the hypothetical-set aggregate function <literal>myrank</>,
|
||||
To remove the hypothetical-set aggregate function <literal>myrank</literal>,
|
||||
which takes an arbitrary list of ordering columns and a matching list
|
||||
of direct arguments:
|
||||
<programlisting>
|
||||
|
||||
Reference in New Issue
Block a user