@@ -5862,7 +5862,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
5862
5862
(references <link linkend="catalog-pg-type"><structname>pg_type</structname></link>.<structfield>oid</structfield>)
5863
5863
</para>
5864
5864
<para>
5865
- An arraywith the data types of the function arguments. This includes
5865
+ An arrayof the data types of the function arguments. This includes
5866
5866
only input arguments (including <literal>INOUT</literal> and
5867
5867
<literal>VARIADIC</literal> arguments), and thus represents
5868
5868
the call signature of the function.
@@ -5875,7 +5875,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
5875
5875
(references <link linkend="catalog-pg-type"><structname>pg_type</structname></link>.<structfield>oid</structfield>)
5876
5876
</para>
5877
5877
<para>
5878
- An arraywith the data types of the function arguments. This includes
5878
+ An arrayof the data types of the function arguments. This includes
5879
5879
all arguments (including <literal>OUT</literal> and
5880
5880
<literal>INOUT</literal> arguments); however, if all the
5881
5881
arguments are <literal>IN</literal> arguments, this field will be null.
@@ -5889,7 +5889,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
5889
5889
<structfield>proargmodes</structfield> <type>char[]</type>
5890
5890
</para>
5891
5891
<para>
5892
- An arraywith the modes of the function arguments, encoded as
5892
+ An arrayof the modes of the function arguments, encoded as
5893
5893
<literal>i</literal> for <literal>IN</literal> arguments,
5894
5894
<literal>o</literal> for <literal>OUT</literal> arguments,
5895
5895
<literal>b</literal> for <literal>INOUT</literal> arguments,
@@ -5907,7 +5907,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
5907
5907
<structfield>proargnames</structfield> <type>text[]</type>
5908
5908
</para>
5909
5909
<para>
5910
- An arraywith the names of the function arguments.
5910
+ An arrayof the names of the function arguments.
5911
5911
Arguments without a name are set to empty strings in the array.
5912
5912
If none of the arguments have a name, this field will be null.
5913
5913
Note that subscripts correspond to positions of
@@ -5932,9 +5932,12 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
5932
5932
<row>
5933
5933
<entry role="catalog_table_entry"><para role="column_definition">
5934
5934
<structfield>protrftypes</structfield> <type>oid[]</type>
5935
+ (references <link linkend="catalog-pg-type"><structname>pg_type</structname></link>.<structfield>oid</structfield>)
5935
5936
</para>
5936
5937
<para>
5937
- Data type OIDs for which to apply transforms.
5938
+ An array of the argument/result data type(s) for which to apply
5939
+ transforms (from the function's <literal>TRANSFORM</literal>
5940
+ clause). Null if none.
5938
5941
</para></entry>
5939
5942
</row>
5940
5943