Commit c1e59cc5 authored by Neil Conway's avatar Neil Conway

Minor documentation tweak: in the tables of functions and operators,

don't include a space between the function name and the parenthesis
that begins its parameter list, for consistency.
parent 5c75ff2a
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.326 2006/07/13 23:59:47 neilc Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.327 2006/07/16 23:59:58 neilc Exp $ -->
<chapter id="functions"> <chapter id="functions">
<title>Functions and Operators</title> <title>Functions and Operators</title>
...@@ -6145,12 +6145,12 @@ SELECT TIMESTAMP WITH TIME ZONE '2001-02-16 20:38:40-05' AT TIME ZONE 'MST'; ...@@ -6145,12 +6145,12 @@ SELECT TIMESTAMP WITH TIME ZONE '2001-02-16 20:38:40-05' AT TIME ZONE 'MST';
CURRENT_DATE CURRENT_DATE
CURRENT_TIME CURRENT_TIME
CURRENT_TIMESTAMP CURRENT_TIMESTAMP
CURRENT_TIME (<replaceable>precision</replaceable>) CURRENT_TIME(<replaceable>precision</replaceable>)
CURRENT_TIMESTAMP (<replaceable>precision</replaceable>) CURRENT_TIMESTAMP(<replaceable>precision</replaceable>)
LOCALTIME LOCALTIME
LOCALTIMESTAMP LOCALTIMESTAMP
LOCALTIME (<replaceable>precision</replaceable>) LOCALTIME(<replaceable>precision</replaceable>)
LOCALTIMESTAMP (<replaceable>precision</replaceable>) LOCALTIMESTAMP(<replaceable>precision</replaceable>)
</synopsis> </synopsis>
</para> </para>
...@@ -7685,8 +7685,7 @@ SELECT NULLIF(value, '(none)') ... ...@@ -7685,8 +7685,7 @@ SELECT NULLIF(value, '(none)') ...
<row> <row>
<entry> <entry>
<literal> <literal>
<function>array_append</function> <function>array_append</function>(<type>anyarray</type>, <type>anyelement</type>)
(<type>anyarray</type>, <type>anyelement</type>)
</literal> </literal>
</entry> </entry>
<entry><type>anyarray</type></entry> <entry><type>anyarray</type></entry>
...@@ -7697,8 +7696,7 @@ SELECT NULLIF(value, '(none)') ... ...@@ -7697,8 +7696,7 @@ SELECT NULLIF(value, '(none)') ...
<row> <row>
<entry> <entry>
<literal> <literal>
<function>array_cat</function> <function>array_cat</function>(<type>anyarray</type>, <type>anyarray</type>)
(<type>anyarray</type>, <type>anyarray</type>)
</literal> </literal>
</entry> </entry>
<entry><type>anyarray</type></entry> <entry><type>anyarray</type></entry>
...@@ -7709,8 +7707,7 @@ SELECT NULLIF(value, '(none)') ... ...@@ -7709,8 +7707,7 @@ SELECT NULLIF(value, '(none)') ...
<row> <row>
<entry> <entry>
<literal> <literal>
<function>array_dims</function> <function>array_dims</function>(<type>anyarray</type>)
(<type>anyarray</type>)
</literal> </literal>
</entry> </entry>
<entry><type>text</type></entry> <entry><type>text</type></entry>
...@@ -7721,8 +7718,7 @@ SELECT NULLIF(value, '(none)') ... ...@@ -7721,8 +7718,7 @@ SELECT NULLIF(value, '(none)') ...
<row> <row>
<entry> <entry>
<literal> <literal>
<function>array_lower</function> <function>array_lower</function>(<type>anyarray</type>, <type>int</type>)
(<type>anyarray</type>, <type>int</type>)
</literal> </literal>
</entry> </entry>
<entry><type>int</type></entry> <entry><type>int</type></entry>
...@@ -7733,8 +7729,7 @@ SELECT NULLIF(value, '(none)') ... ...@@ -7733,8 +7729,7 @@ SELECT NULLIF(value, '(none)') ...
<row> <row>
<entry> <entry>
<literal> <literal>
<function>array_prepend</function> <function>array_prepend</function>(<type>anyelement</type>, <type>anyarray</type>)
(<type>anyelement</type>, <type>anyarray</type>)
</literal> </literal>
</entry> </entry>
<entry><type>anyarray</type></entry> <entry><type>anyarray</type></entry>
...@@ -7745,8 +7740,7 @@ SELECT NULLIF(value, '(none)') ... ...@@ -7745,8 +7740,7 @@ SELECT NULLIF(value, '(none)') ...
<row> <row>
<entry> <entry>
<literal> <literal>
<function>array_to_string</function> <function>array_to_string</function>(<type>anyarray</type>, <type>text</type>)
(<type>anyarray</type>, <type>text</type>)
</literal> </literal>
</entry> </entry>
<entry><type>text</type></entry> <entry><type>text</type></entry>
...@@ -7757,8 +7751,7 @@ SELECT NULLIF(value, '(none)') ... ...@@ -7757,8 +7751,7 @@ SELECT NULLIF(value, '(none)') ...
<row> <row>
<entry> <entry>
<literal> <literal>
<function>array_upper</function> <function>array_upper</function>(<type>anyarray</type>, <type>int</type>)
(<type>anyarray</type>, <type>int</type>)
</literal> </literal>
</entry> </entry>
<entry><type>int</type></entry> <entry><type>int</type></entry>
...@@ -7769,8 +7762,7 @@ SELECT NULLIF(value, '(none)') ... ...@@ -7769,8 +7762,7 @@ SELECT NULLIF(value, '(none)') ...
<row> <row>
<entry> <entry>
<literal> <literal>
<function>string_to_array</function> <function>string_to_array</function>(<type>text</type>, <type>text</type>)
(<type>text</type>, <type>text</type>)
</literal> </literal>
</entry> </entry>
<entry><type>text[]</type></entry> <entry><type>text[]</type></entry>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment