Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
b411e26a
Commit
b411e26a
authored
Mar 25, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mention rollback instead of abort.
parent
4d1a60aa
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
11 deletions
+11
-11
src/man/begin.l
src/man/begin.l
+2
-2
src/man/catalogs.3
src/man/catalogs.3
+3
-3
src/man/commit.l
src/man/commit.l
+2
-2
src/man/end.l
src/man/end.l
+2
-2
src/man/vacuum.l
src/man/vacuum.l
+2
-2
No files found.
src/man/begin.l
View file @
b411e26a
.\" 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).
src/man/catalogs.3
View file @
b411e26a
.\" 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
...
...
src/man/commit.l
View file @
b411e26a
.\" 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).
src/man/end.l
View file @
b411e26a
.\" 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).
src/man/vacuum.l
View file @
b411e26a
.\" 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment