1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

doc: Improve documentation related to table partitioning feature.

Commit f0e44751d7 implemented table
partitioning, but failed to mention the "no row movement"
restriction in the documentation.  Fix that and a few other issues.

Amit Langote, with some additional wordsmithing by me.
This commit is contained in:
Robert Haas
2016-12-13 08:18:00 -05:00
parent 3856cf9607
commit a1a4459c29
4 changed files with 34 additions and 14 deletions

View File

@@ -526,6 +526,17 @@ INSERT <replaceable>oid</replaceable> <replaceable class="parameter">count</repl
updated by the command.
</para>
</refsect1>
<refsect1>
<title>Notes</title>
<para>
If the specified table is a partitioned table, each row is routed to
the appropriate partition and inserted into it. If the specified table
is a partition, an error will occur if one of the input rows violates
the partition constraint.
</para>
</refsect1>
<refsect1>
<title>Examples</title>