I noticed that the Partitioning section of the docs has *two* sections
authorBruce Momjian <[email protected]>
Tue, 21 Nov 2006 03:44:55 +0000 (03:44 +0000)
committerBruce Momjian <[email protected]>
Tue, 21 Nov 2006 03:44:55 +0000 (03:44 +0000)
of caveats in different places, but close together. One called caveats,
one not. That looks like it just led to somebody not reading some
appropriate caveats in the second group of caveats (on -admin).

Simon Riggs

doc/src/sgml/ddl.sgml

index 6face6583fa36c70e7e09253874e57f5a4b1b234..d1701717e2ad74baf913d5e07398962cf1482d0e 100644 (file)
@@ -2657,36 +2657,6 @@ ALTER TABLE measurement_y2006m02 INHERIT measurement;
     </para>
    </sect2>
 
-   <sect2 id="ddl-partitioning-caveats">
-   <title>Caveats</title>
-   <para>
-    The following caveats apply to partitioned tables:
-   <itemizedlist>
-    <listitem>
-     <para>
-      There is currently no way to verify that all of the
-      <literal>CHECK</literal> constraints are mutually
-      exclusive. Care is required by the database designer.
-     </para>
-    </listitem>
-
-    <listitem>
-     <para>
-      There is currently no simple way to specify that rows must not be
-      inserted into the master table. A <literal>CHECK (false)</literal>
-      constraint on the master table would be inherited by all child
-      tables, so that cannot be used for this purpose.  One possibility is
-      to set up an <literal>ON INSERT</> trigger on the master table that
-      always raises an error.  (Alternatively, such a trigger could be
-      used to redirect the data into the proper child table, instead of
-      using a set of rules as suggested above.)
-     </para>
-    </listitem>
-   </itemizedlist>
-   </para>
-   </sect2>
-
    <sect2 id="ddl-partitioning-constraint-exclusion">
    <title>Partitioning and Constraint Exclusion</title>
 
@@ -2768,9 +2738,39 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate &gt;= DATE '2006-01-01';
     a large part of the partition or just a small part.  An index will
     be helpful in the latter case but not the former.
    </para>
+   </sect2>
+
+   <sect2 id="ddl-partitioning-caveats">
+   <title>Caveats</title>
+   <para>
+    The following caveats apply to partitioned tables:
+   <itemizedlist>
+    <listitem>
+     <para>
+      There is currently no way to verify that all of the
+      <literal>CHECK</literal> constraints are mutually
+      exclusive. Care is required by the database designer.
+     </para>
+    </listitem>
+
+    <listitem>
+     <para>
+      There is currently no simple way to specify that rows must not be
+      inserted into the master table. A <literal>CHECK (false)</literal>
+      constraint on the master table would be inherited by all child
+      tables, so that cannot be used for this purpose.  One possibility is
+      to set up an <literal>ON INSERT</> trigger on the master table that
+      always raises an error.  (Alternatively, such a trigger could be
+      used to redirect the data into the proper child table, instead of
+      using a set of rules as suggested above.)
+     </para>
+    </listitem>
+   </itemizedlist>
+   </para>
 
    <para>
-    The following caveats apply:
+    The following caveats apply to constraint exclusion:
 
    <itemizedlist>
     <listitem>