Re: [SPAM]Re: Questions about 9.0 release note - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: [SPAM]Re: Questions about 9.0 release note
Date
Msg-id 201004010119.o311JL316565@momjian.us
Whole thread Raw
In response to Re: [SPAM]Re: Questions about 9.0 release note  (Takahiro Itagaki <itagaki.takahiro@oss.ntt.co.jp>)
Responses Re: [SPAM]Re: Questions about 9.0 release note  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Takahiro Itagaki wrote:
>
> "Robert Haas" <robertmhaas@gmail.com> wrote:
>
> > > * (seq_page_cost/(random_page_cost))
> > > * EXCLUDE constraints has no tags to be linked.
> > > * "EXCLUDE constraints" is not indexed from the Index page.
>
> > CREATE TABLE ... CONSTRAINT ... EXCLUDE rather than CREATE TABLE
> > CONSTRAINT ... EXCLUDE.
>
> Here is a patch to fix the documentation.
>
> For exclusion constraints, I added a tag "SQL-CREATETABLE-exclude"
> to <varlistentry> of EXCLUDE in CREATE TABLE documentation. Also,
> "Exclusion constraints" section is added to the constraints doc.
> But the section is very short and just links to the CREATE TABLE doc.
> We could move some contents from CREATE TABLE to the constraints doc.

[ Apologies, proper patch now attached.]

I applied a clarified version of your submitted patch.

--
  Bruce Momjian  <bruce@momjian.us>        http://momjian.us
  EnterpriseDB                             http://enterprisedb.com
diff -cprN head/doc/src/sgml/ddl.sgml work/doc/src/sgml/ddl.sgml
*** head/doc/src/sgml/ddl.sgml    2010-02-25 09:58:18.518068000 +0900
--- work/doc/src/sgml/ddl.sgml    2010-03-31 15:46:11.748532000 +0900
*************** CREATE TABLE order_items (
*** 845,850 ****
--- 845,880 ----
      <xref linkend="sql-createtable" endterm="sql-createtable-title">.
     </para>
    </sect2>
+
+   <sect2>
+    <title>Exclusion constraints</title>
+
+    <indexterm>
+     <primary>exclusion constraint</primary>
+    </indexterm>
+
+    <indexterm>
+     <primary>constraint</primary>
+     <secondary>exclusion</secondary>
+    </indexterm>
+
+    <para>
+     Exclusion constraints ensure that if any two rows are compared on
+     the specified columns or expressions using the specified operators,
+     at least one of these operator comparisons will be false. The syntax is:
+ <programlisting>
+ CREATE TABLE circles (
+     c circle,
+     EXCLUDE USING gist (c WITH &&)
+ );
+ </programlisting>
+    </para>
+
+    <para>
+     See also <link linkend="SQL-CREATETABLE-EXCLUDE"><command>CREATE
+     TABLE ... CONSTRAINT ... EXCLUDE</></link> for details.
+    </para>
+   </sect2>
   </sect1>

   <sect1 id="ddl-system-columns">

pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [SPAM]Re: Questions about 9.0 release note
Next
From: Robert Haas
Date:
Subject: Re: Parameter name standby_mode