Add mention of hot backups to the release notes.

Add id tags to chapter and section headings to ensure good labels
 on output html files.
This commit is contained in:
Thomas G. Lockhart 1999-06-09 13:44:59 +00:00
parent 3f86238f13
commit 878d952084
5 changed files with 24 additions and 14 deletions

View File

@ -719,14 +719,16 @@ pg_id: can't load library 'libpq.so'
<Step Performance="required"> <Step Performance="required">
<para> <para>
Several regression tests could fail if the user's locale collation Several regression tests could fail if the user's locale collation
scheme is different from that of standard C locale. scheme is different from that of the standard <literal>C</literal> locale.
</para> </para>
<para> <para>
If you configure and compile <ProductName>Postgres</ProductName> If you configure and compile <ProductName>Postgres</ProductName>
with the <option>--enable-locale</option> option then with <option>--enable-locale</option> then you should
set locale environment to C (or unset all LC_* variables) set the locale environment to <quote><literal>C</literal></quote>
(or unset all <quote>LC_*</quote> variables)
by putting these additional lines to your login environment by putting these additional lines to your login environment
before starting postmaster: before starting <application>postmaster</application>:
<ProgramListing> <ProgramListing>
LC_COLLATE=C LC_COLLATE=C
LC_CTYPE=C LC_CTYPE=C

View File

@ -1,4 +1,4 @@
<sect1> <sect1 id="copyright">
<title>Copyrights and Trademarks</title> <title>Copyrights and Trademarks</title>
<para> <para>

View File

@ -1,4 +1,4 @@
<sect1> <sect1 id="terminology">
<title>Terminology</title> <title>Terminology</title>
<para> <para>
@ -65,7 +65,7 @@
</para> </para>
</sect1> </sect1>
<sect1> <sect1 id="notation">
<title>Notation</title> <title>Notation</title>
<para> <para>

View File

@ -1,4 +1,4 @@
<chapter> <chapter id="release">
<title>Release Notes</title> <title>Release Notes</title>
<sect1> <sect1>
@ -44,10 +44,18 @@
longer are restricted by simple table-level locking; longer are restricted by simple table-level locking;
we have something better than row-level locking. we have something better than row-level locking.
</para> </para>
</listitem>
</varlistentry>
<varlistentry>
<term>
Hot backups from <application>pg_dump</application>
</term>
<listitem>
<para> <para>
Another big benefit of MVCC is that <application>pg_dump</application> <application>pg_dump</application> takes advantage of the new
can now generate consistent backups of live, active databases, without MVCC features to give a consistant database dump/backup while
blocking active transactions. the database stays online and available for queries.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
@ -84,7 +92,7 @@
<para> <para>
We now have CASE, INTERSECT, and EXCEPT statement We now have CASE, INTERSECT, and EXCEPT statement
support. We have new LIMIT/OFFSET, SET TRANSACTION ISOLATION LEVEL, support. We have new LIMIT/OFFSET, SET TRANSACTION ISOLATION LEVEL,
SELECT ... FOR UPDATE, and an improved LOCK command. SELECT ... FOR UPDATE, and an improved LOCK TABLE command.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
@ -184,7 +192,7 @@
<command>SELECT</command> it doesn't mean that this row really exists <command>SELECT</command> it doesn't mean that this row really exists
at the time it is returned (i.e. sometime after the statement or at the time it is returned (i.e. sometime after the statement or
transaction began) nor that the row is protected from deletion or transaction began) nor that the row is protected from deletion or
updation by concurrent transactions before the current transaction does update by concurrent transactions before the current transaction does
a commit or rollback. a commit or rollback.
</para> </para>

View File

@ -1,4 +1,4 @@
<chapter> <chapter id="syntax">
<title>SQL Syntax</title> <title>SQL Syntax</title>
<abstract> <abstract>