diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml index a82c0f39b6..73013840a5 100644 --- a/doc/src/sgml/plpython.sgml +++ b/doc/src/sgml/plpython.sgml @@ -1,4 +1,4 @@ - + PL/Python - Python Procedural Language @@ -397,7 +397,7 @@ $$ LANGUAGE plpythonu; - + Arrays, Lists SQL array values are passed into PL/Python as a Python list. To diff --git a/doc/src/sgml/ref/create_type.sgml b/doc/src/sgml/ref/create_type.sgml index cb264127c2..c2a77ac88d 100644 --- a/doc/src/sgml/ref/create_type.sgml +++ b/doc/src/sgml/ref/create_type.sgml @@ -1,5 +1,5 @@ @@ -84,7 +84,7 @@ CREATE TYPE name - + Enumerated Types diff --git a/doc/src/sgml/release-9.0.sgml b/doc/src/sgml/release-9.0.sgml index 80c716a6d2..a4b698cdb8 100644 --- a/doc/src/sgml/release-9.0.sgml +++ b/doc/src/sgml/release-9.0.sgml @@ -1,4 +1,4 @@ - + @@ -53,9 +53,10 @@ - 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 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) @@ -129,8 +131,9 @@ - Do not allow substring() to have a negative third - length, per the SQL standard (Tom) + Do not allow substring() + to have a negative third length, per the SQL standard (Tom) @@ -283,15 +286,16 @@ Allow per-tablespace sequential and random page cost variables (seq_page_cost/(random_page_cost)) via - ALTER TABLESPACE - ... SET/RESET (Robert Haas) + ALTER TABLESPACE + ... SET/RESET (Robert Haas) - Improve performance of TRUNCATE when used in the same - transaction as table creation (Tom) + Improve performance of TRUNCATE when + used in the same transaction as table creation (Tom) @@ -317,7 +321,8 @@ - Remove unnecessary outer joins (Robert Haas) + Remove unnecessary outer + joins (Robert Haas) @@ -336,7 +341,7 @@ - GEQO + <link linkend="geqo">GEQO</link> @@ -374,8 +379,8 @@ - Improve ANALYZE to support inheritance-tree statistics - (Tom) + Improve ANALYZE + to support inheritance-tree statistics (Tom) @@ -385,7 +390,8 @@ - Improve autovacuum detection of when re-analyze is necessary (Tom) + Improve autovacuum + detection of when re-analyze is necessary (Tom) @@ -406,7 +412,8 @@ - Allow setting of distinct statistics using ALTER TABLE + Allow setting of distinct statistics using ALTER TABLE (Robert Haas) @@ -577,8 +584,9 @@ - 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) @@ -593,8 +601,9 @@ - Allow mixing of traditional and SQL-standard - LIMIT/OFFSET syntax in the same query (Tom) + Allow mixing of traditional and SQL-standard LIMIT/OFFSET + syntax in the same query (Tom) @@ -659,22 +668,25 @@ - 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 enumerate types with + no labels (Bruce) @@ -685,7 +697,7 @@ 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) @@ -779,7 +791,8 @@ - Add deferrable unique constraints (Dean Rasheed) + Add deferrable + unique constraints (Dean Rasheed) @@ -797,10 +810,12 @@ - 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 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. @@ -828,15 +843,15 @@ Add the ability to make mass permission changes per schema using the new 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) @@ -853,8 +868,10 @@ - Have LISTEN/NOTIFY store events in a memory - queue, rather than a system table (Joachim Wieland) + Have LISTEN/NOTIFY store events + in a memory queue, rather than a system table (Joachim + Wieland) @@ -871,7 +888,8 @@ - Allow CLUSTER on all system tables (Tom) + Allow CLUSTER + on all system tables (Tom) @@ -923,8 +941,9 @@ - log_*_stats log output, e.g. log_statement_stats, no - longer shows this information. + log_*_stats log output, e.g. , no longer shows + this information. @@ -1072,7 +1091,7 @@ - Full Text Search + <link linkend="textsearch">Full Text Search</link> @@ -1162,8 +1181,9 @@ - Correct calculations of "overlap" and "contains" operations over - polygons (Teodor) + Correct calculations of "overlap" + and "contains" operations over polygons (Teodor) @@ -1267,7 +1287,8 @@ - Have information schema properly display date type octet lengths + Have information + schema properly display date type octet lengths (Peter) @@ -1439,10 +1460,12 @@ - Add new PL/Perl functions: quote_literal(), + Add new PL/Perl 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) @@ -1479,6 +1502,11 @@ Allow use strict in PL/Perl (Tim Bunce) + + + This can be enabled with the server variable . + @@ -1564,7 +1592,8 @@ - Add array parameter/return support to PL/Python (Peter) + Add array parameter/return + support to PL/Python (Peter) @@ -1640,8 +1669,9 @@ - Fix psql --file - to properly honor - @@ -2219,8 +2249,9 @@ - Add a new ERRCODE_INVALID_PASSWORD SQLSTATE error - code (Bruce) + Add a new ERRCODE_INVALID_PASSWORD + SQLSTATE error code (Bruce) @@ -2409,8 +2440,10 @@ - Add \shell and \setshell meta commands to - /contrib/pgbench (Michael Paquier) + Add \shell and \setshell meta + commands to /contrib/pgbench + (Michael Paquier)