diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-08-11 11:45:47 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-08-11 11:45:47 -0400 |
commit | d82d84864ca8ee2960a1a5d7a3f051290ac1e42f (patch) | |
tree | ad95d6499a064e760e746310031f7999cd970c45 /doc/src | |
parent | 5057366eedaccef1f4c25a7c5de0d6c1c5a291f1 (diff) | |
download | postgresql-d82d84864ca8ee2960a1a5d7a3f051290ac1e42f.tar.gz postgresql-d82d84864ca8ee2960a1a5d7a3f051290ac1e42f.zip |
Display both per-table and per-column FDW options in psql's \d output.
Along the way, rename "Options" to "FDW Options" in various places for
consistency and clarity.
Shigeru Hanada
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 3a10e76320e..2db4adff4b9 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -892,15 +892,14 @@ testdb=> <para> For some types of relation, <literal>\d</> shows additional information for each column: column values for sequences, indexed expression for - indexes and per-column foreign data wrapper options for foreign tables. + indexes and foreign data wrapper options for foreign tables. </para> <para> The command form <literal>\d+</literal> is identical, except that more information is displayed: any comments associated with the columns of the table are shown, as is the presence of OIDs in the - table, the view definition if the relation is a view, and the generic - options if the relation is a foreign table. + table, the view definition if the relation is a view. </para> <para> |