From b411e26a9aaf85a370b8fd91a9538f49a4bb51b8 Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Wed, 25 Mar 1998 01:54:53 +0000
Subject: [PATCH] Mention rollback instead of abort.

---
 src/man/begin.l    | 4 ++--
 src/man/catalogs.3 | 6 +++---
 src/man/commit.l   | 4 ++--
 src/man/end.l      | 4 ++--
 src/man/vacuum.l   | 4 ++--
 5 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/man/begin.l b/src/man/begin.l
index 04fd5737308..aa63586f50c 100644
--- a/src/man/begin.l
+++ b/src/man/begin.l
@@ -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).
diff --git a/src/man/catalogs.3 b/src/man/catalogs.3
index 3f8eee0ac3c..83f70af4dd0 100644
--- a/src/man/catalogs.3
+++ b/src/man/catalogs.3
@@ -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
diff --git a/src/man/commit.l b/src/man/commit.l
index 7d4889e8b8c..e72608a696c 100644
--- a/src/man/commit.l
+++ b/src/man/commit.l
@@ -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).
diff --git a/src/man/end.l b/src/man/end.l
index 77bf2662cb0..6ec08e5b4b2 100644
--- a/src/man/end.l
+++ b/src/man/end.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).
diff --git a/src/man/vacuum.l b/src/man/vacuum.l
index cbef19725b1..b8f43d9de36 100644
--- a/src/man/vacuum.l
+++ b/src/man/vacuum.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
-- 
GitLab