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

Commit b411e26

Browse files
committed
Mention rollback instead of abort.
1 parent 4d1a60a commit b411e26

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

src/man/begin.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/begin.l,v 1.4 1998/03/23 15:09:23 momjian Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/begin.l,v 1.5 1998/03/25 01:54:48 momjian Exp $
44
.TH BEGIN SQL 11/05/95 PostgreSQL PostgreSQL
55
.SH NAME
66
begin - begins a transaction
@@ -16,5 +16,5 @@ is committed, Postgres will ensure that all updates are done or none of
1616
them are done. Transactions have the standard ACID (atomic,
1717
consistent, isolatable, and durable) property.
1818
.SH "SEE ALSO"
19-
abort(l),
19+
rollback(l),
2020
commit(l).

src/man/catalogs.3

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/catalogs.3,v 1.4 1998/03/06 18:03:02 momjian Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/catalogs.3,v 1.5 1998/03/25 01:54:49 momjian Exp $
44
.TH "SYSTEM CATALOGS" INTRO 03/13/94 PostgreSQL PostgreSQL
55
.SH "Section 7 - System Catalogs"
66
.de LS
@@ -72,9 +72,9 @@ heaps and cannot be accessed through normal means (attempting to do so
7272
causes an error).
7373
.LS
7474
\fBname\fP \fBshared/local\fP \fBdescription\fP
75-
pg_log shared transaction commit/abort log
75+
pg_log shared transaction commit/rollback log
7676
pg_magic shared magic constant
77-
pg_time shared commit/abort times
77+
pg_time shared commit/rollback times
7878
pg_variable shared special variable values
7979
.LE
8080
.PP

src/man/commit.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/commit.l,v 1.4 1998/03/23 15:09:25 momjian Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/commit.l,v 1.5 1998/03/25 01:54:51 momjian Exp $
44
.TH COMMIT SQL 01/23/93 PostgreSQL PostgreSQL
55
.SH NAME
66
commit - commit the current transaction
@@ -17,7 +17,7 @@ is functionally equivalent to the
1717
.IR "end"
1818
command
1919
.SH "SEE ALSO"
20-
abort(l),
20+
rollback(l),
2121
begin(l),
2222
commit(l),
2323
rollback(l).

src/man/end.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/end.l,v 1.3 1998/01/11 22:17:34 momjian Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/end.l,v 1.4 1998/03/25 01:54:52 momjian Exp $
44
.TH END SQL 01/23/93 PostgreSQL PostgreSQL
55
.SH NAME
66
end - commit the current transaction
@@ -13,5 +13,5 @@ This commands commits the current transaction. All changes made by
1313
the transaction become visible to others and are guaranteed to be
1414
durable if a crash occurs.
1515
.SH "SEE ALSO"
16-
abort(l),
16+
rollback(l),
1717
begin(l).

src/man/vacuum.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/vacuum.l,v 1.8 1998/02/03 19:27:30 momjian Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/vacuum.l,v 1.9 1998/03/25 01:54:53 momjian Exp $
44
.TH VACUUM SQL 11/05/95 PostgreSQL PostgreSQL
55
.SH NAME
66
vacuum - vacuum a database
@@ -12,7 +12,7 @@ vacuum - vacuum a database
1212
.SH DESCRIPTION
1313
.BR Vacuum
1414
is the Postgres vacuum cleaner. It opens every class in the database,
15-
cleans out records from aborted transactions, and updates statistics in the
15+
cleans out records from rolled back transactions, and updates statistics in the
1616
system catalogs. The statistics maintained include the number of
1717
tuples and number of pages stored in all classes. Running
1818
.BR vacuum

0 commit comments

Comments
 (0)