summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2018-05-07 09:48:47 -0400
committerRobert Haas <rhaas@postgresql.org>2018-05-07 09:48:47 -0400
commitf955d7ee166dfa053caa6d1bdb2a28b28b212fe3 (patch)
tree58ae17bbd2a1baa50b0d2fb438e789237a53f3c2
parent659442e40d57af5ea00dfc3d31266ef0cfb8278e (diff)
Documentation updates for partitioning.
Takayuki Tsunakawa Discussion: http://postgr.es/m/0A3221C70F24FB45833433255569204D1F965627@G01JPEXMBYT05
-rw-r--r--doc/src/sgml/catalogs.sgml4
-rw-r--r--doc/src/sgml/ref/create_table.sgml4
2 files changed, 3 insertions, 5 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
index 26984b6cba1..969ba1bca4e 100644
--- a/doc/src/sgml/catalogs.sgml
+++ b/doc/src/sgml/catalogs.sgml
@@ -4823,8 +4823,8 @@ SCRAM-SHA-256$<replaceable>&lt;iteration count&gt;</replaceable>:<replaceable>&l
<entry><type>char</type></entry>
<entry></entry>
<entry>
- Partitioning strategy; <literal>l</literal> = list partitioned table,
- <literal>r</literal> = range partitioned table
+ Partitioning strategy; <literal>h</literal> = hash partitioned table,
+ <literal>l</literal> = list partitioned table, <literal>r</literal> = range partitioned table
</entry>
</row>
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index 763b4f573c8..2a1eac9592b 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -408,9 +408,7 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
<para>
Rows inserted into a partitioned table will be automatically routed to
the correct partition. If no suitable partition exists, an error will
- occur. Also, if updating a row in a given partition would require it
- to move to another partition due to new partition key values, an error
- will occur.
+ occur.
</para>
<para>