diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-07-03 12:18:10 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-07-03 12:18:10 -0400 |
commit | 03e7b302b1d5a67758e756b1f64686c29d37558f (patch) | |
tree | 23d80a32cb58a4e3133804da6e7b019bacff58a9 | |
parent | 9a2ea618323a4cf8ca7eb6a828b08c6e39b95cdd (diff) | |
download | postgresql-03e7b302b1d5a67758e756b1f64686c29d37558f.tar.gz postgresql-03e7b302b1d5a67758e756b1f64686c29d37558f.zip |
Doc: document table persistence display in \dt+.
Forgotten in commit 9a2ea6183.
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index c6c20de2434..3cd0a99d079 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1361,14 +1361,16 @@ testdb=> In this group of commands, the letters <literal>E</literal>, <literal>i</literal>, <literal>m</literal>, <literal>s</literal>, <literal>t</literal>, and <literal>v</literal> - stand for foreign table, index, materialized view, sequence, table, and view, + stand for foreign table, index, materialized view, + sequence, table, and view, respectively. You can specify any or all of these letters, in any order, to obtain a listing of objects - of these types. For example, <literal>\dit</literal> lists indexes - and tables. If <literal>+</literal> is + of these types. For example, <literal>\dti</literal> lists + tables and indexes. If <literal>+</literal> is appended to the command name, each object is listed with its - physical size on disk and its associated description, if any. + persistence status (permanent, temporary, or unlogged), + physical size on disk, and associated description if any. If <replaceable class="parameter">pattern</replaceable> is specified, only objects whose names match the pattern are listed. By default, only user-created objects are shown; supply a |