Add more 9.0 release note documentation links.
authorBruce Momjian
Sun, 21 Mar 2010 02:24:29 +0000 (02:24 +0000)
committerBruce Momjian
Sun, 21 Mar 2010 02:24:29 +0000 (02:24 +0000)
doc/src/sgml/plpython.sgml
doc/src/sgml/ref/create_type.sgml
doc/src/sgml/release-9.0.sgml

index a82c0f39b63b0ea9c081057705f5eae2c6b864d2..73013840a555a58cf9a8f2ee5fb81dc98da190b2 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  PL/Python - Python Procedural Language
@@ -397,7 +397,7 @@ $$ LANGUAGE plpythonu;
   
   
 
-  
+   id="plpython-arrays">
    Arrays, Lists
   
    SQL array values are passed into PL/Python as a Python list.  To
index cb264127c26c91339a8bce38b60e61fb577735d5..c2a77ac88d37928ce07de0febebad25f81555f51 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -84,7 +84,7 @@ CREATE TYPE name
   
   
 
-  
+   id="SQL-CREATETYPE-enum">
    Enumerated Types
 
    
index 80c716a6d2138fbe3277a90a9d8a824968a313fa..a4b698cdb8e78899c154196b6c38b90962f68446 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  
   
         
           
-            Remove server variable regex_flavor, which was defaulted
-            to advanced (e.g. Perl-regex compatible) for many
-            years (Tom)
+            Remove server variable regex_flavor, which
+            was defaulted to 
+            linkend="posix-syntax-details">advanced
+            (e.g. Perl-regex compatible) for many years (Tom)
           
         
       
@@ -69,8 +70,9 @@
 
       
         
-          When querying a parent table, do not do additional permission
-          checks on child tables returned as part of the query (Peter)
+          When querying a parent table,
+          do not do additional permission checks on child tables
+          returned as part of the query (Peter)
         
 
         
@@ -80,8 +82,8 @@
 
       
         
-          Have fractional seconds truncate rather than round when using
-          float-based dates/times (Tom)
+          Have fractional seconds conversion truncate rather than
+          round when using float-based dates/times (Tom)
         
       
 
 
       
         
-          Do not allow substring() to have a negative third
-          length, per the SQL standard (Tom)
+          Do not allow 
+          linkend="functions-string-sql">substring()
+          to have a negative third length, per the SQL standard (Tom)
         
       
 
             
               Allow per-tablespace sequential and random page cost variables
               (seq_page_cost/(random_page_cost)) via
-              ALTER TABLESPACE
-              ...  SET/RESET (Robert Haas)
+              <link linkend="SQL-ALTERTABLESPACE"><command>ALTER TABLESPACE
+              ...  SET/RESET (Robert Haas)
             
           
 
           
             
-              Improve performance of TRUNCATE when used in the same
-              transaction as table creation (Tom)
+              Improve performance of 
+              linkend="SQL-TRUNCATE">TRUNCATE when
+              used in the same transaction as table creation (Tom)
             
           
 
 
           
             
-              Remove unnecessary outer joins (Robert Haas)
+              Remove unnecessary outer
+              joins (Robert Haas)
             
 
             
       
 
       
-        <span class="marked">GEQO</span>
+        <span class="marked"><link linkend="geqo">GEQO</link></span>
         
 
           
 
           
             
-              Improve <command>ANALYZE to support inheritance-tree statistics
-          (Tom)
+              Improve <link linkend="SQL-ANALYZE">ANALYZE
+              to support inheritance-tree statistics (Tom)
             
 
             
 
           
             
-              Improve autovacuum detection of when re-analyze is necessary (Tom)
+              Improve autovacuum
+              detection of when re-analyze is necessary (Tom)
             
           
 
 
           
             
-              Allow setting of distinct statistics using ALTER TABLE
+              Allow setting of distinct statistics using 
+              linkend="SQL-ALTERTABLE">ALTER TABLE
               (Robert Haas)
             
 
 
         
           
-            Do SELECT FOR UPDATE/SHARE processing
-            after applying LIMIT, so the number of rows returned
+            Do SELECT
+            FOR UPDATE/SHARE processing after
+            applying LIMIT, so the number of rows returned
             is always predictable (Tom)
           
 
 
         
           
-            Allow mixing of traditional and SQL-standard
-            LIMIT/OFFSET syntax in the same query (Tom)
+            Allow mixing of traditional and SQL-standard 
+            linkend="SQL-LIMIT">LIMIT/OFFSET
+            syntax in the same query (Tom)
           
         
 
 
         
           
-            Speed up CREATE DATABASE by deferring flushes to disk
-            (Andres Freund, Greg Stark)
+            Speed up CREATE
+            DATABASE by deferring flushes to disk (Andres
+            Freund, Greg Stark)
           
         
 
         
           
-            Allow comments only on columns of tables, views, and composite
-            types, not other objects like indexes and TOAST tables
-            (Tom)
+            Allow comments only on
+            columns of tables, views, and composite types, not other
+            objects like indexes and TOAST tables (Tom)
           
         
 
         
           
-            Allow the creation of enumerate types with no labels (Bruce)
+            Allow the creation of 
+            linkend="SQL-CREATETYPE-enum">enumerate types with
+            no labels (Bruce)
           
 
           
         
           
             Have columns defined with storage type MAIN remain on
-            main heap page unless it cannot fit (Kevin Grittner)
+            the main heap page unless it cannot fit (Kevin Grittner)
           
 
           
 
           
             
-              Add deferrable unique constraints (Dean Rasheed)
+              Add deferrable
+              unique constraints (Dean Rasheed)
             
 
             
             
 
             
-              This is enabled with the CREATE TABLE CONSTRAINT ...
-              EXCLUDE clause.  While uniqueness checks could be specified
-              using this syntax, the real value of this features is in using
-              complex operators that do not have built-in constraints.
+              This is enabled with the 
+              linkend="SQL-CREATETABLE-description">CREATE
+              TABLE CONSTRAINT ...  EXCLUDE clause.  While
+              uniqueness checks could be specified using this syntax,
+              the real value of this features is in using complex
+              operators that do not have built-in constraints.
             
           
 
             
               Add the ability to make mass permission changes per
               schema using the new 
-              linkend="SQL-GRANT">GRANT/REVOKE
-              IN SCHEMA clause (Petr Jelinek)
+              linkend="SQL-GRANT">GRANT/REVOKE
+              IN SCHEMA clause (Petr Jelinek)
             
           
 
           
             
               Add the ability to control large object permissions with
-              GRANT/REVOKE (KaiGai Kohei)
+              GRANT/REVOKE(KaiGai Kohei)
             
           
 
 
         
           
-            Have LISTEN/NOTIFY store events in a memory
-            queue, rather than a system table (Joachim Wieland)
+            Have LISTEN/
+            linkend="SQL-NOTIFY">NOTIFY store events
+            in a memory queue, rather than a system table (Joachim
+            Wieland)
           
 
           
 
         
           
-            Allow CLUSTER on all system tables (Tom)
+            Allow CLUSTER
+            on all system tables (Tom)
           
 
           
             
 
             
-              log_*_stats log output, e.g. log_statement_stats, no
-              longer shows this information.
+              log_*_stats log output, e.g. 
+              linkend="runtime-config-statistics-monitor">, no longer shows
+              this information.
             
           
 
       
 
       
-        <span class="marked">Full Text Search</span>
+        <span class="marked"><link linkend="textsearch">Full Text Search</link></span>
         
 
           
 
         
           
-            Correct calculations of "overlap" and "contains" operations over
-            polygons (Teodor)
+            Correct calculations of 
+            linkend="functions-geometry-op-table">"overlap"
+            and "contains" operations over polygons (Teodor)
           
         
 
 
           
             
-              Have information schema properly display date type octet lengths
+              Have information
+              schema properly display date type octet lengths
               (Peter)
             
 
 
           
             
-              Add new PL/Perl functions:  quote_literal(),
+              Add new PL/Perl functions:  
+              linkend="plperl-utility-functions">quote_literal(),
               quote_nullable(), quote_ident(),
               encode_bytea(), decode_bytea(),
-              looks_like_number(), encode_array_literal(),
+              looks_like_number(),
+              encode_array_literal(),
               encode_array_constructor() (Tim Bunce)
             
           
             
               Allow use strict in PL/Perl (Tim Bunce)
             
+
+            
+              This can be enabled with the server variable 
+              linkend="guc-plperl-use-strict">.
+            
           
 
           
 
           
             
-              Add array parameter/return support to PL/Python (Peter) 
+              Add array parameter/return
+              support to PL/Python (Peter)
             
           
 
 
           
             
-              Fix psql --file - to properly honor
-              
+              Fix psql --file - to properly honor 
+              linkend="R1-APP-PSQL-3">
+              (Bruce)
             
           
 
 
         
           
-            Add a new ERRCODE_INVALID_PASSWORD SQLSTATE error
-            code (Bruce)
+            Add a new 
+            linkend="errcodes-table">ERRCODE_INVALID_PASSWORD
+            SQLSTATE error code (Bruce)
           
         
 
 
         
           
-            Add \shell and \setshell meta commands to
-            /contrib/pgbench (Michael Paquier)
+            Add \shell and \setshell meta
+            commands to 
+            linkend="pgbench">/contrib/pgbench
+            (Michael Paquier)