mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-01 19:45:33 +08:00
Mention rollback instead of abort.
This commit is contained in:
parent
4d1a60aa41
commit
b411e26a9a
@ -1,6 +1,6 @@
|
||||
.\" This is -*-nroff-*-
|
||||
.\" XXX standard disclaimer belongs here....
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/begin.l,v 1.4 1998/03/23 15:09:23 momjian Exp $
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/begin.l,v 1.5 1998/03/25 01:54:48 momjian Exp $
|
||||
.TH BEGIN SQL 11/05/95 PostgreSQL PostgreSQL
|
||||
.SH NAME
|
||||
begin - begins a transaction
|
||||
@ -16,5 +16,5 @@ is committed, Postgres will ensure that all updates are done or none of
|
||||
them are done. Transactions have the standard ACID (atomic,
|
||||
consistent, isolatable, and durable) property.
|
||||
.SH "SEE ALSO"
|
||||
abort(l),
|
||||
rollback(l),
|
||||
commit(l).
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\" This is -*-nroff-*-
|
||||
.\" XXX standard disclaimer belongs here....
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/catalogs.3,v 1.4 1998/03/06 18:03:02 momjian Exp $
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/catalogs.3,v 1.5 1998/03/25 01:54:49 momjian Exp $
|
||||
.TH "SYSTEM CATALOGS" INTRO 03/13/94 PostgreSQL PostgreSQL
|
||||
.SH "Section 7 - System Catalogs"
|
||||
.de LS
|
||||
@ -72,9 +72,9 @@ heaps and cannot be accessed through normal means (attempting to do so
|
||||
causes an error).
|
||||
.LS
|
||||
\fBname\fP \fBshared/local\fP \fBdescription\fP
|
||||
pg_log shared transaction commit/abort log
|
||||
pg_log shared transaction commit/rollback log
|
||||
pg_magic shared magic constant
|
||||
pg_time shared commit/abort times
|
||||
pg_time shared commit/rollback times
|
||||
pg_variable shared special variable values
|
||||
.LE
|
||||
.PP
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\" This is -*-nroff-*-
|
||||
.\" XXX standard disclaimer belongs here....
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/commit.l,v 1.4 1998/03/23 15:09:25 momjian Exp $
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/commit.l,v 1.5 1998/03/25 01:54:51 momjian Exp $
|
||||
.TH COMMIT SQL 01/23/93 PostgreSQL PostgreSQL
|
||||
.SH NAME
|
||||
commit - commit the current transaction
|
||||
@ -17,7 +17,7 @@ is functionally equivalent to the
|
||||
.IR "end"
|
||||
command
|
||||
.SH "SEE ALSO"
|
||||
abort(l),
|
||||
rollback(l),
|
||||
begin(l),
|
||||
commit(l),
|
||||
rollback(l).
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\" This is -*-nroff-*-
|
||||
.\" XXX standard disclaimer belongs here....
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/end.l,v 1.3 1998/01/11 22:17:34 momjian Exp $
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/end.l,v 1.4 1998/03/25 01:54:52 momjian Exp $
|
||||
.TH END SQL 01/23/93 PostgreSQL PostgreSQL
|
||||
.SH NAME
|
||||
end - commit the current transaction
|
||||
@ -13,5 +13,5 @@ This commands commits the current transaction. All changes made by
|
||||
the transaction become visible to others and are guaranteed to be
|
||||
durable if a crash occurs.
|
||||
.SH "SEE ALSO"
|
||||
abort(l),
|
||||
rollback(l),
|
||||
begin(l).
|
||||
|
@ -1,6 +1,6 @@
|
||||
.\" This is -*-nroff-*-
|
||||
.\" XXX standard disclaimer belongs here....
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/vacuum.l,v 1.8 1998/02/03 19:27:30 momjian Exp $
|
||||
.\" $Header: /cvsroot/pgsql/src/man/Attic/vacuum.l,v 1.9 1998/03/25 01:54:53 momjian Exp $
|
||||
.TH VACUUM SQL 11/05/95 PostgreSQL PostgreSQL
|
||||
.SH NAME
|
||||
vacuum - vacuum a database
|
||||
@ -12,7 +12,7 @@ vacuum - vacuum a database
|
||||
.SH DESCRIPTION
|
||||
.BR Vacuum
|
||||
is the Postgres vacuum cleaner. It opens every class in the database,
|
||||
cleans out records from aborted transactions, and updates statistics in the
|
||||
cleans out records from rolled back transactions, and updates statistics in the
|
||||
system catalogs. The statistics maintained include the number of
|
||||
tuples and number of pages stored in all classes. Running
|
||||
.BR vacuum
|
||||
|
Loading…
Reference in New Issue
Block a user