Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
b09bfc65
Commit
b09bfc65
authored
Sep 16, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update release notes for changes between beta1 and beta2.
parent
3e579cf3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
5 deletions
+59
-5
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+59
-5
No files found.
doc/src/sgml/release.sgml
View file @
b09bfc65
<!--
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.36
7 2005/09/12 05:10:12 neilc
Exp $
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.36
8 2005/09/16 03:37:35 tgl
Exp $
Typical markup:
...
...
@@ -20,7 +20,7 @@ pg_[A-Za-z0-9_] <application>
<note>
<title>Release date</title>
<simpara>2005-1?-??, Current as of 2005-0
8-24
</simpara>
<simpara>2005-1?-??, Current as of 2005-0
9-15
</simpara>
</note>
<sect2>
...
...
@@ -348,10 +348,10 @@ pg_[A-Za-z0-9_] <application>
database (Tom)
</para>
<para>
The old behavior of <command>REINDEX</> database
reindexed only
Formerly, <command>REINDEX DATABASE</>
reindexed only
system tables. This new behavior seems more intuitive. A new
command <command>REINDEX SYSTEM</>
allows for reindexing just the
system tables.
command <command>REINDEX SYSTEM</>
provides the old functionality
of reindexing just the
system tables.
</para>
</listitem>
...
...
@@ -386,6 +386,28 @@ pg_[A-Za-z0-9_] <application>
</para>
</listitem>
<listitem>
<para>
<command>CREATE LANGUAGE</> may ignore the provided arguments
in favor of information from <structname>pg_pltemplate</>
(Tom)
</para>
<para>
A new system catalog <structname>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,
<command>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,
<application>pg_dump</> will dump procedural language definitions as
just <command>CREATE LANGUAGE <replaceable>name</></command>, relying
on a template entry to exist at load time. We expect this will be a
more future-proof representation.
</para>
</listitem>
</itemizedlist>
</sect2>
...
...
@@ -668,6 +690,13 @@ pg_[A-Za-z0-9_] <application>
</para>
</listitem>
<listitem>
<para>
New system catalog <structname>pg_pltemplate</> allows overriding
obsolete procedural-language definitions in dump files (Tom)
</para>
</listitem>
</itemizedlist>
</sect3>
...
...
@@ -1610,6 +1639,17 @@ pg_[A-Za-z0-9_] <application>
</para>
</listitem>
<listitem>
<para>
Make startup banner show both server version number and
<application>psql</>'s version number, when they are different (Bruce)
</para>
<para>
Also, a warning will be shown if the server and <application>psql</>
are from different major releases.
</para>
</listitem>
</itemizedlist>
</sect3>
...
...
@@ -1660,6 +1700,20 @@ pg_[A-Za-z0-9_] <application>
</para>
</listitem>
<listitem>
<para>
Rely on <structname>pg_pltemplate</> for procedural languages (Tom)
</para>
<para>
If the call handler for a procedural language is in the
<literal>pg_catalog</> schema, <application>pg_dump</> does not
dump the handler. Instead, it dumps the language using just
<command>CREATE LANGUAGE <replaceable>name</></command>,
relying on the <structname>pg_pltemplate</> catalog to provide
the language's creation parameters at load time.
</para>
</listitem>
</itemizedlist>
</sect3>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment