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
cd8115e0
Commit
cd8115e0
authored
Nov 13, 2013
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: clarify MVCC introduction to allow for per-statement snapshots
parent
fe67d252
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
doc/src/sgml/mvcc.sgml
doc/src/sgml/mvcc.sgml
+3
-3
No files found.
doc/src/sgml/mvcc.sgml
View file @
cd8115e0
...
@@ -41,12 +41,12 @@
...
@@ -41,12 +41,12 @@
for
developers
to
manage
concurrent
access
to
data
.
Internally
,
for
developers
to
manage
concurrent
access
to
data
.
Internally
,
data
consistency
is
maintained
by
using
a
multiversion
data
consistency
is
maintained
by
using
a
multiversion
model
(
Multiversion
Concurrency
Control
,
<
acronym
>
MVCC
</
acronym
>).
model
(
Multiversion
Concurrency
Control
,
<
acronym
>
MVCC
</
acronym
>).
This
means
that
while
querying
a
database
each
transaction
sees
This
means
that
each
SQL
statement
sees
a
snapshot
of
data
(
a
<
firstterm
>
database
version
</
firstterm
>)
a
snapshot
of
data
(
a
<
firstterm
>
database
version
</
firstterm
>)
as
it
was
some
as
it
was
some
time
ago
,
regardless
of
the
current
state
of
the
underlying
data
.
time
ago
,
regardless
of
the
current
state
of
the
underlying
data
.
This
pr
otects
the
transaction
from
viewing
inconsistent
data
that
This
pr
events
statements
from
viewing
inconsistent
data
produced
could
be
caused
by
(
other
)
concurrent
transaction
updates
on
the
same
by
concurrent
transactions
performing
updates
on
the
same
data
rows
,
providing
<
firstterm
>
transaction
isolation
</
firstterm
>
data
rows
,
providing
<
firstterm
>
transaction
isolation
</
firstterm
>
for
each
database
session
.
<
acronym
>
MVCC
</
acronym
>,
by
eschewing
for
each
database
session
.
<
acronym
>
MVCC
</
acronym
>,
by
eschewing
the
locking
methodologies
of
traditional
database
systems
,
the
locking
methodologies
of
traditional
database
systems
,
...
...
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