diff options
author | Michael Paquier <michael@paquier.xyz> | 2018-10-22 15:39:32 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2018-10-22 15:39:32 +0900 |
commit | d5845b283d773287054758bb971b72d14267e9ed (patch) | |
tree | 105f78d48aebe78573c2753e77ae784644d9ccac | |
parent | 33df118a73c099e4acd5d3244b2975468cc4a5c8 (diff) | |
download | postgresql-d5845b283d773287054758bb971b72d14267e9ed.tar.gz postgresql-d5845b283d773287054758bb971b72d14267e9ed.zip |
Fix description of pg_class.relispartition in documentation
This missed the fact that indexes can be partitions since 11.
Author: Michael Paquier
Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/20181022031212.GF14282@paquier.xyz
-rw-r--r-- | doc/src/sgml/catalogs.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 0179deea2e0..0fef0ca6152 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1948,7 +1948,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l <entry><structfield>relispartition</structfield></entry> <entry><type>bool</type></entry> <entry></entry> - <entry>True if table is a partition</entry> + <entry>True if table or index is a partition</entry> </row> <row> |