diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-24 23:45:13 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-24 23:45:13 +0000 |
commit | 9d8888079d0fa3575bcda776728212ced5eb5415 (patch) | |
tree | dbbd9df5212ec3a1838cf25f1ce004811abbdce1 /doc/src | |
parent | c8bcd5ca92f812d04f9ded963d812360c6ea20a5 (diff) |
Support named parameters in information_schema.parameters,
per Dennis Bjorklund. I did not force initdb for this, but
you'd need to do one to get the improved view.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/information_schema.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index 9193280ea6c..ff7d877c61b 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/information_schema.sgml,v 1.13 2003/12/13 23:59:06 neilc Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/information_schema.sgml,v 1.14 2004/01/24 23:45:13 tgl Exp $ --> <chapter id="information-schema"> <title>The Information Schema</title> @@ -1823,7 +1823,7 @@ ORDER BY c.ordinal_position; <para> The view <literal>parameters</literal> contains information about - the parameters (arguments) all functions in the current database. + the parameters (arguments) of all functions in the current database. Only those functions are shown that the current user has access to (by way of being the owner or having some privilege). </para> @@ -1875,8 +1875,8 @@ ORDER BY c.ordinal_position; <entry><literal>parameter_mode</literal></entry> <entry><type>character_data</type></entry> <entry> - Always <literal>IN</literal>, meaning input parameter (In the - future there might be other parameter modes.) + Always <literal>IN</literal>, meaning input parameter (in the + future there might be other parameter modes) </entry> </row> @@ -1895,7 +1895,7 @@ ORDER BY c.ordinal_position; <row> <entry><literal>parameter_name</literal></entry> <entry><type>sql_identifier</type></entry> - <entry>Always null, since <productname>PostgreSQL</> does not support named parameters</entry> + <entry>Name of the parameter, or null if the parameter has no name</entry> </row> <row> |