diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-04-17 18:35:41 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-04-17 18:38:49 -0400 |
commit | 421a2c48328c88eb31f6b29979218f0a350bb739 (patch) | |
tree | d447d5722c5d88772c4da744a65c7429337d4146 /doc/src | |
parent | b036982db786f7ef6c118419e7e832167ad4a6a7 (diff) |
Tie loose ends in psql's new \dP command
* Remove one unnecessary pg_class join in SQL command. Not needed,
because we use a regclass cast instead.
* Doc: refer to "partitioned relations" rather than specifically tables,
since indexes are also displayed.
* Rename "On table" column to "Table", for consistency with \di.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20190407212525.GB10080@telsasoft.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 636df6c0ec4..d5441a9e411 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1675,15 +1675,15 @@ testdb=> <para> If the modifier <literal>n</literal> (<quote>nested</quote>) is used, - or a pattern is specified, then non-root partitioned tables are + or a pattern is specified, then non-root partitioned relations are included, and a column is shown displaying the parent of each partitioned relation. </para> <para> - If <literal>+</literal> is appended to the command, the sum of sizes of - table's partitions (including that of their indexes) is also displayed, - along with the associated description. + If <literal>+</literal> is appended to the command name, the sum of the + sizes of each relation's partitions is also displayed, along with the + relation's description. If <literal>n</literal> is combined with <literal>+</literal>, two sizes are shown: one including the total size of directly-attached leaf partitions, and another showing the total size of all partitions, |