From 2c4970c61c2273392f4aa4c91e708205e57e85fd Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 19 Oct 2007 01:56:06 +0000 Subject: [PATCH] More indenting cleanup for release notes. --- doc/src/sgml/release.sgml | 297 +++++++++++++++++++------------------- 1 file changed, 151 insertions(+), 146 deletions(-) diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 1cf58b5425..480d2f6ec8 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -804,6 +804,7 @@ do it for earlier branch release files. point-in-time recovery. + New boolean configuration parameter, archive_mode, @@ -2431,112 +2432,113 @@ do it for earlier branch release files. - - Support explicit placement of the temporary-table schema within - search_path, and disable searching it for functions - and operators (Tom) - - - This is needed to allow a security-definer function to set a - truly secure value of search_path. Without it, - an unprivileged SQL user can use temporary objects to execute code - with the privileges of the security-definer function (CVE-2007-2138). - See CREATE FUNCTION for more information. - + + Support explicit placement of the temporary-table schema within + search_path, and disable searching it for functions + and operators (Tom) + + + + This is needed to allow a security-definer function to set a + truly secure value of search_path. Without it, + an unprivileged SQL user can use temporary objects to execute code + with the privileges of the security-definer function (CVE-2007-2138). + See CREATE FUNCTION for more information. + - - Fix shared_preload_libraries for Windows - by forcing reload in each backend (Korry Douglas) - + + Fix shared_preload_libraries for Windows + by forcing reload in each backend (Korry Douglas) + - - Fix to_char() so it properly upper/lower cases localized day or month - names (Pavel Stehule) - + + Fix to_char() so it properly upper/lower cases localized day or month + names (Pavel Stehule) + - - /contrib/tsearch2 crash fixes (Teodor) - + + /contrib/tsearch2 crash fixes (Teodor) + - - Require COMMIT PREPARED to be executed in the same - database as the transaction was prepared in (Heikki) - + + Require COMMIT PREPARED to be executed in the same + database as the transaction was prepared in (Heikki) + - - Allow pg_dump to do binary backups larger than two gigabytes - on Windows (Magnus) - + + Allow pg_dump to do binary backups larger than two gigabytes + on Windows (Magnus) + - - New traditional (Taiwan) Chinese FAQ (Zhou Daojing) - + + New traditional (Taiwan) Chinese FAQ (Zhou Daojing) + - - Prevent the statistics collector from writing to disk too frequently (Tom) - + + Prevent the statistics collector from writing to disk too frequently (Tom) + - - Fix potential-data-corruption bug in how VACUUM FULL handles - UPDATE chains (Tom, Pavan Deolasee) - + + Fix potential-data-corruption bug in how VACUUM FULL handles + UPDATE chains (Tom, Pavan Deolasee) + - - Fix bug in domains that use array types (Tom) - + + Fix bug in domains that use array types (Tom) + - - Fix pg_dump so it can dump a serial column's sequence - using + + Fix pg_dump so it can dump a serial column's sequence + using - - Planner fixes, including improving outer join and bitmap scan - selection logic (Tom) - + + Planner fixes, including improving outer join and bitmap scan + selection logic (Tom) + - - Fix possible wrong answers or crash when a PL/pgSQL function tries - to RETURN from within an EXCEPTION block - (Tom) - + + Fix possible wrong answers or crash when a PL/pgSQL function tries + to RETURN from within an EXCEPTION block + (Tom) + - - Fix PANIC during enlargement of a hash index (Tom) - + + Fix PANIC during enlargement of a hash index (Tom) + - - Fix POSIX-style timezone specs to follow new USA DST rules (Tom) - + + Fix POSIX-style timezone specs to follow new USA DST rules (Tom) + @@ -2571,16 +2573,16 @@ do it for earlier branch release files. - - Remove overly-restrictive check for type length in constraints and - functional indexes(Tom) - + + Remove overly-restrictive check for type length in constraints and + functional indexes(Tom) + - - Fix optimization so MIN/MAX in subqueries can again use indexes (Tom) - + + Fix optimization so MIN/MAX in subqueries can again use indexes (Tom) + @@ -2616,124 +2618,127 @@ do it for earlier branch release files. - - Remove security vulnerabilities that allowed connected users - to read backend memory (Tom) - - - The vulnerabilities involve suppressing the normal check that a SQL - function returns the data type it's declared to, and changing the - data type of a table column (CVE-2007-0555, CVE-2007-0556). These - errors can easily be exploited to cause a backend crash, and in - principle might be used to read database content that the user - should not be able to access. - + + Remove security vulnerabilities that allowed connected users + to read backend memory (Tom) + + + + The vulnerabilities involve suppressing the normal check that a SQL + function returns the data type it's declared to, and changing the + data type of a table column (CVE-2007-0555, CVE-2007-0556). These + errors can easily be exploited to cause a backend crash, and in + principle might be used to read database content that the user + should not be able to access. + - - Fix not-so-rare-anymore bug wherein btree index page splits could fail - due to choosing an infeasible split point (Heikki Linnakangas) - + + Fix not-so-rare-anymore bug wherein btree index page splits could fail + due to choosing an infeasible split point (Heikki Linnakangas) + - - Fix Borland C compile scripts (L Bayuk) - + + Fix Borland C compile scripts (L Bayuk) + - - Properly handle to_char('CC') for years ending in - 00 (Tom) - - - Year 2000 is in the twentieth century, not the twenty-first. - + + Properly handle to_char('CC') for years ending in + 00 (Tom) + + + + Year 2000 is in the twentieth century, not the twenty-first. + - - /contrib/tsearch2 localization improvements (Tatsuo, Teodor) - + + /contrib/tsearch2 localization improvements (Tatsuo, Teodor) + - - Fix incorrect permission check in - information_schema.key_column_usage view (Tom) - - - The symptom is relation with OID nnnnn does not exist errors. - To get this fix without using initdb, use CREATE OR - REPLACE VIEW to install the corrected definition found in - share/information_schema.sql. Note you will need to do - this in each database. - + + Fix incorrect permission check in + information_schema.key_column_usage view (Tom) + + + + The symptom is relation with OID nnnnn does not exist errors. + To get this fix without using initdb, use CREATE OR + REPLACE VIEW to install the corrected definition found in + share/information_schema.sql. Note you will need to do + this in each database. + - - Improve VACUUM performance for databases with many tables (Tom) - + + Improve VACUUM performance for databases with many tables (Tom) + - - Fix for rare Assert() crash triggered by UNION (Tom) - + + Fix for rare Assert() crash triggered by UNION (Tom) + - - Fix potentially incorrect results from index searches using - ROW inequality conditions (Tom) - + + Fix potentially incorrect results from index searches using + ROW inequality conditions (Tom) + - - Tighten security of multi-byte character processing for UTF8 sequences - over three bytes long (Tom) - + + Tighten security of multi-byte character processing for UTF8 sequences + over three bytes long (Tom) + - - Fix bogus permission denied failures occurring on Windows - due to attempts to fsync already-deleted files (Magnus, Tom) - + + Fix bogus permission denied failures occurring on Windows + due to attempts to fsync already-deleted files (Magnus, Tom) + - - Fix bug that could cause the statistics collector - to hang on Windows (Magnus) - + + Fix bug that could cause the statistics collector + to hang on Windows (Magnus) + - - This would in turn lead to autovacuum not working. - + + This would in turn lead to autovacuum not working. + - - Fix possible crashes when an already-in-use PL/pgSQL function is - updated (Tom) - + + Fix possible crashes when an already-in-use PL/pgSQL function is + updated (Tom) + - - Improve PL/pgSQL handling of domain types (Sergiy Vyshnevetskiy, Tom) - + + Improve PL/pgSQL handling of domain types (Sergiy Vyshnevetskiy, Tom) + - - Fix possible errors in processing PL/pgSQL exception blocks (Tom) - + + Fix possible errors in processing PL/pgSQL exception blocks (Tom) + -- 2.39.5