Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
d39a3699
Commit
d39a3699
authored
23 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update FAQ.
parent
0ae55405
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/FAQ
+10
-1
10 additions, 1 deletion
doc/FAQ
doc/src/FAQ/FAQ.html
+13
-1
13 additions, 1 deletion
doc/src/FAQ/FAQ.html
with
23 additions
and
2 deletions
doc/FAQ
+
10
−
1
View file @
d39a3699
Frequently Asked Questions (FAQ) for PostgreSQL
Last updated:
Sat
Feb 2 1
6:46:36
EST 2002
Last updated:
Tue
Feb
1
2 1
2:14:52
EST 2002
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...
...
@@ -80,6 +80,8 @@
4.15.2) How do I get the value of a SERIAL insert?
4.15.3) Don't currval() and nextval() lead to a race condition with
other users?
4.15.4) Why aren't my sequence numbers reused on transaction abort?
Why are there gaps in the numbers of my sequence/SERIAL column?
4.16) What is an OID? What is a TID?
4.17) What is the meaning of some of the terms used in PostgreSQL?
4.18) Why do I get the error "ERROR: Memory exhausted in
...
...
@@ -863,6 +865,13 @@ BYTEA bytea variable-length byte array (null-byte safe)
No. Currval() returns the current value assigned by your backend, not
by all users.
4.15.4) Why aren't my sequence numbers reused on transaction abort? Why are
there gaps in the numbers of my sequence/SERIAL column?
To improve concurrency, sequence values are given out to running
transactions as needed and are now locked until the transaction
completes. This causes gaps in numbering from aborted transactions.
4.16) What is an OID? What is a TID?
OIDs are PostgreSQL's answer to unique row ids. Every row that is
...
...
This diff is collapsed.
Click to expand it.
doc/src/FAQ/FAQ.html
+
13
−
1
View file @
d39a3699
...
...
@@ -14,7 +14,7 @@
alink=
"#0000ff"
>
<H1>
Frequently Asked Questions (FAQ) for PostgreSQL
</H1>
<P>
Last updated:
Sat
Feb
2 1
6:46:36
EST 2002
</P>
<P>
Last updated:
Tue
Feb
1
2 1
2:14:52
EST 2002
</P>
<P>
Current maintainer: Bruce Momjian (
<A
href=
"mailto:pgman@candle.pha.pa.us"
>
pgman@candle.pha.pa.us
</A>
)
<BR>
...
...
@@ -119,6 +119,9 @@
<SMALL>
SERIAL
</SMALL>
insert?
<BR>
<A
href=
"#4.15.3"
>
4.15.3
</A>
) Don't
<I>
currval()
</I>
and
<I>
nextval()
</I>
lead to a race condition with other users?
<BR>
<A
href=
"#4.15.4"
>
4.15.4
</A>
) Why aren't my sequence numbers reused
on transaction abort? Why are there gaps in the numbers of my
sequence/SERIAL column?
<BR>
<A
href=
"#4.16"
>
4.16
</A>
) What is an
<SMALL>
OID
</SMALL>
? What is a
<SMALL>
TID
</SMALL>
?
<BR>
<A
href=
"#4.17"
>
4.17
</A>
) What is the meaning of some of the terms
...
...
@@ -1092,6 +1095,15 @@ BYTEA bytea variable-length byte array (null-byte safe)
<P>
No. Currval() returns the current value assigned by your
backend, not by all users.
</P>
<H4><A
name=
"4.15.4"
>
4.15.4
</A>
) Why aren't my sequence numbers reused
on transaction abort? Why are there gaps in the numbers of my
sequence/SERIAL column?
</H4>
<P>
To improve concurrency, sequence values are given out to running
transactions as needed and are now
<i>
locked
</i>
until the
transaction completes. This causes gaps in numbering from aborted
transactions.
<H4><A
name=
"4.16"
>
4.16
</A>
) What is an
<SMALL>
OID
</SMALL>
? What is
a
<SMALL>
TID
</SMALL>
?
</H4>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment