From b42305eb2203ef5a80d436a0378b883f676f1c79 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 16 Sep 2005 03:37:35 +0000 Subject: [PATCH] Update release notes for changes between beta1 and beta2. --- doc/src/sgml/release.sgml | 62 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 58 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 97f00114cc..09d9e58e0f 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -20,7 +20,7 @@ pg_[A-Za-z0-9_] Release date - 2005-1?-??, Current as of 2005-08-24 + 2005-1?-??, Current as of 2005-09-15 @@ -348,10 +348,10 @@ pg_[A-Za-z0-9_] database (Tom) - The old behavior of REINDEX database reindexed only + Formerly, REINDEX DATABASE reindexed only system tables. This new behavior seems more intuitive. A new - command REINDEX SYSTEM allows for reindexing just the - system tables. + command REINDEX SYSTEM provides the old functionality + of reindexing just the system tables. @@ -386,6 +386,28 @@ pg_[A-Za-z0-9_] + + + CREATE LANGUAGE may ignore the provided arguments + in favor of information from pg_pltemplate + (Tom) + + + A new system catalog pg_pltemplate has been defined + to carry information about the preferred definitions of procedural + languages (such as whether they have validator functions). When + an entry exists in this catalog for the language being created, + CREATE LANGUAGE will ignore all its parameters except the + language name and instead use the catalog information. This measure + was taken because of increasing problems with obsolete language + definitions being loaded by old dump files. As of 8.1, + pg_dump will dump procedural language definitions as + just CREATE LANGUAGE name, relying + on a template entry to exist at load time. We expect this will be a + more future-proof representation. + + + @@ -668,6 +690,13 @@ pg_[A-Za-z0-9_] + + + New system catalog pg_pltemplate allows overriding + obsolete procedural-language definitions in dump files (Tom) + + + @@ -1610,6 +1639,17 @@ pg_[A-Za-z0-9_] + + + Make startup banner show both server version number and + psql's version number, when they are different (Bruce) + + + Also, a warning will be shown if the server and psql + are from different major releases. + + + @@ -1660,6 +1700,20 @@ pg_[A-Za-z0-9_] + + + Rely on pg_pltemplate for procedural languages (Tom) + + + If the call handler for a procedural language is in the + pg_catalog schema, pg_dump does not + dump the handler. Instead, it dumps the language using just + CREATE LANGUAGE name, + relying on the pg_pltemplate catalog to provide + the language's creation parameters at load time. + + + -- 2.39.5