Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5aa7849

Browse files
committed
set.patch updates an example in ref/set.sgml to have microsecond
precision. vacuum.patch updates ref/vacuum.sgml to explicitly state that an exclusive lock is not obtained during normal (non-FULL) vacuum. Rod Taylor
1 parent 8a7cfa3 commit 5aa7849

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

doc/src/sgml/ref/set.sgml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/set.sgml,v 1.66 2002/10/09 04:59:38 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/set.sgml,v 1.67 2002/10/09 16:27:48 momjian Exp $
33
PostgreSQL documentation
44
-->
55

@@ -476,10 +476,10 @@ SELECT CURRENT_TIMESTAMP AS today;
476476
<screen>
477477
SET TIME ZONE 'Europe/Rome';
478478
SELECT CURRENT_TIMESTAMP AS today;
479-
480-
today
481-
------------------------
482-
1998-03-31 17:41:31+02
479+
480+
today
481+
-------------------------------
482+
2002-10-08 05:39:35.008271+02
483483
</screen>
484484
</para>
485485
</refsect1>

doc/src/sgml/ref/vacuum.sgml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/vacuum.sgml,v 1.26 2002/09/21 18:32:54 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/vacuum.sgml,v 1.27 2002/10/09 16:27:48 momjian Exp $
33
PostgreSQL documentation
44
-->
55

@@ -186,7 +186,8 @@ INFO: Index <replaceable class="PARAMETER">index</replaceable>: Pages 28;
186186
Plain <command>VACUUM</command> (without <literal>FULL</>) simply reclaims
187187
space and makes it
188188
available for re-use. This form of the command can operate in parallel
189-
with normal reading and writing of the table. <command>VACUUM
189+
with normal reading and writing of the table, as an exclusive lock
190+
is not obtained. <command>VACUUM
190191
FULL</command> does more extensive processing, including moving of tuples
191192
across blocks to try to compact the table to the minimum number of disk
192193
blocks. This form is much slower and requires an exclusive lock on each

0 commit comments

Comments
 (0)