]> granicus.if.org Git - postgresql/commitdiff
Move information_schema duplicate constraint note to the top of the
authorBruce Momjian <bruce@momjian.us>
Tue, 22 Feb 2011 01:14:02 +0000 (20:14 -0500)
committerBruce Momjian <bruce@momjian.us>
Tue, 22 Feb 2011 01:14:02 +0000 (20:14 -0500)
information schema documentation because it affects several tables.

doc/src/sgml/information_schema.sgml

index 91c2dd4d525f424f4370776bfd2c23482d4023ad..32e9083744351c8e386900acc736c009918d7aa6 100644 (file)
   <productname>PostgreSQL</productname>-specific views.
  </para>
 
+ <note>
+  <para>
+   The SQL standard requires constraint names to be unique within a
+   schema;  <productname>PostgreSQL</productname>, however, does not
+   enforce this restriction.  If duplicate-named constraints are
+   stored in the same <productname>PostgreSQL</productname> schema,
+   a standard-compliant query that expects to return one matching
+   constraint row might return several, one row for each matching
+   constraint stored in the specified schema. 
+  </para>
+ </note>
+
+
  <sect1 id="infoschema-schema">
   <title>The Schema</title>
 
@@ -3212,18 +3225,6 @@ ORDER BY c.ordinal_position;
    </tgroup>
   </table>
 
-  <note>
-   <para>
-    The SQL standard requires constraint names to be unique within a
-    schema;  <productname>PostgreSQL</productname>, however, does not
-    enforce this restriction.  If duplicate-named constraints are
-    stored in the same <productname>PostgreSQL</productname> schema, a
-    standard-compliant query that expects to return one row might
-    return several, one for each matching constraint stored in the
-    specified schema.
-   </para>
-  </note>
-
  </sect1>
 
  <sect1 id="infoschema-role-column-grants">