Skip to content

Commit db1531f

Browse files
author
Neil Conway
committed
Fix typo, other minor improvements.
1 parent f647458 commit db1531f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

doc/src/sgml/wal.sgml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.29 2004/08/08 04:34:43 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.30 2004/11/15 04:35:57 neilc Exp $ -->
22

33
<chapter id="wal">
44
<title>Write-Ahead Logging (<acronym>WAL</acronym>)</title>
@@ -104,17 +104,17 @@
104104
</para>
105105

106106
<para>
107-
<firstterm>Checkpoints</firstterm><indexterm><primary>checkpoint</></> are points in the sequence of
108-
transactions at which it is guaranteed that the data files have
109-
been updated with all information logged before the checkpoint. At
110-
checkpoint time, all dirty data pages are flushed to disk and a
111-
special checkpoint record is written to the log file. As result, in
112-
the event of a crash, the recoverer knows from what point in the
113-
log (known as the redo record) it should start the REDO operation,
114-
since any changes made to data files before that record are already
115-
on disk. After a checkpoint has been made, any log segments written
116-
before the redo record are no longer needed and can be recycled or
117-
removed. (When <acronym>WAL</acronym> archiving is being done, the
107+
<firstterm>Checkpoints</firstterm><indexterm><primary>checkpoint</></>
108+
are points in the sequence of transactions at which it is guaranteed
109+
that the data files have been updated with all information logged before
110+
the checkpoint. At checkpoint time, all dirty data pages are flushed to
111+
disk and a special checkpoint record is written to the log file. As a
112+
result, in the event of a crash, the crash recovery procedure knows from
113+
what point in the log (known as the redo record) it should start the
114+
REDO operation, since any changes made to data files before that point
115+
are already on disk. After a checkpoint has been made, any log segments
116+
written before the redo record are no longer needed and can be recycled
117+
or removed. (When <acronym>WAL</acronym> archiving is being done, the
118118
log segments must be archived before being recycled or removed.)
119119
</para>
120120

0 commit comments

Comments
 (0)