diff options
author | Bruce Momjian <bruce@momjian.us> | 2021-08-03 11:11:51 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2021-08-03 11:11:51 -0400 |
commit | 22023dd560c42dead7e77ae220dbee013a037285 (patch) | |
tree | 0761b03b539f9004b2453a2bdae9f32a34ff7c7f | |
parent | 2c4fdfef503394034b7e49b88cc747196258c33b (diff) | |
download | postgresql-22023dd560c42dead7e77ae220dbee013a037285.tar.gz postgresql-22023dd560c42dead7e77ae220dbee013a037285.zip |
doc: mention inheritance's tableoid can be used in partitioning
Previously tableoid was not mentioned in the partition doc section. We
only had a link to the "all the normal rules" of inheritance section.
Reported-by: michal.palenik@freemap.sk
Discussion: https://postgr.es/m/162627031219.693.11508199541771263335@wrigleys.postgresql.org
Backpatch-through: 10
-rw-r--r-- | doc/src/sgml/ddl.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index f8f449ce4bd..8515c0e63a4 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -4097,7 +4097,8 @@ ALTER INDEX measurement_city_id_logdate_key <para> Since a partition hierarchy consisting of the partitioned table and its - partitions is still an inheritance hierarchy, all the normal rules of + partitions is still an inheritance hierarchy, + <structfield>tableoid</structfield> and all the normal rules of inheritance apply as described in <xref linkend="ddl-inherit"/>, with a few exceptions: |