aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-01-18 21:02:55 +0000
committerBruce Momjian <bruce@momjian.us>2006-01-18 21:02:55 +0000
commitccebb6745e65ac128a11b923f2487f143fbf8dc3 (patch)
treed7d92b8ade5e3a101862ac7534284aa694f5fed9
parentd5db3abfb6154a2106e83d9db93150097ec83785 (diff)
downloadpostgresql-ccebb6745e65ac128a11b923f2487f143fbf8dc3.tar.gz
postgresql-ccebb6745e65ac128a11b923f2487f143fbf8dc3.zip
You'll find attached a patch for a fixed explanation on parameter_mode
column, OUT and INOUT added. Guillaume LELARGE
-rw-r--r--doc/src/sgml/information_schema.sgml7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml
index 10617613716..57d9e1a248a 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.23 2005/12/08 20:48:10 petere Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/information_schema.sgml,v 1.24 2006/01/18 21:02:55 momjian Exp $ -->
<chapter id="information-schema">
<title>The Information Schema</title>
@@ -1875,8 +1875,9 @@ 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)
+ <literal>IN</literal> for input parameter,
+ <literal>OUT</literal> for output parameter,
+ and <literal>INOUT</literal> for input/ouput parameter.
</entry>
</row>