Bruce Momjian
8ae53160da
Update FAQ.
25 years ago
Bruce Momjian
c309873680
Remove 7.1beta WAL handling from /contrib/pg_resetxlog.
25 years ago
Bruce Momjian
e6aa4584ca
Update FAQ.
25 years ago
Bruce Momjian
b010afe0dd
Update FAQ.
25 years ago
Bruce Momjian
d356ec9a01
Update FAQ.
25 years ago
Bruce Momjian
775a61009e
Update FAQ.
25 years ago
Bruce Momjian
e8869056fa
Update FAQ.
25 years ago
Bruce Momjian
e19d7b7b95
Update FAQ.
25 years ago
Bruce Momjian
4c0e9b5efc
Add new -l flag to set checkpoint location for /contrib/pg_resetxlog.
25 years ago
Peter Eisentraut
0385ba1121
Temporary workaround for links within bibliography references fouling up
...
footnote count.
25 years ago
Bruce Momjian
872aad61ff
Per Tom, do full reset on -x flag.
25 years ago
Bruce Momjian
f6e603cffa
Add new -x XID option to /contrib/pg_resetxlog for future pg_upgrade use.
25 years ago
Michael Meskes
7955f98774
Include sqlca.h automatically.
25 years ago
Bruce Momjian
7a0672b7b1
More pg_upgrade improvements. Almost done, except for max transaction
...
setting.
25 years ago
Bruce Momjian
4d151d0b12
More improvements; still disabled. (Don't panic.)
25 years ago
Tom Lane
92a2598f97
The result of getopt() should be compared to -1, not EOF, per
...
pgsql-hackers discussion of this date.
25 years ago
Tom Lane
4d72af6cb3
Describe type casts under the heading of Value Expressions, and explain
...
the difference between a run-time type cast and casting a literal string
to a specific type. Minor editorial work in same area.
25 years ago
Bruce Momjian
5461983d08
Update with new features. Still disabled.
25 years ago
Tom Lane
9facc585ad
Fix use of 'char' to hold result of getc, per bug report forwarded by
...
Oliver Elphick. A few other minor cleanups while at it.
25 years ago
Tom Lane
8ff263f362
Fix portability problem (result of getopt is int, not char).
25 years ago
Bruce Momjian
bf6992b499
Remove clog copy.
25 years ago
Bruce Momjian
7dc2dc2677
Make improvements to pg_upgrade; is still disabled.
25 years ago
Bruce Momjian
5ac10980d7
Add quotes around $bindir.
25 years ago
Peter Eisentraut
da1c1144e7
Make spelling of operating system names match official version closely.
...
And listing QNX 6 as both supported and unsupported is probably not helpful.
25 years ago
Tom Lane
d079c419d2
Fix include paths for case of VPATH build.
25 years ago
Peter Eisentraut
c58d5d5fcb
Adjust spelling of article titles to match the originals, add some links.
25 years ago
Tom Lane
5490c72a64
make install failed in VPATH build.
25 years ago
Tom Lane
a34f313223
Fix copy-and-paste mistake exposed by gcc warning.
25 years ago
Tom Lane
bf2e5eedf0
In a VPATH build, resultmap must be one of the symlinked files, else
...
pg_regress doesn't see it and you don't get any port-specific
comparisons.
25 years ago
Peter Eisentraut
154ccb6040
Revert last change (CFLAGS+=-g). Probably was a mistake...
25 years ago
Bruce Momjian
aecd85d3a1
Update Lockhart's email address.
...
< * Thomas is Thomas Lockhart <lockhart@alumni.caltech.edu>
---
> * Thomas is Thomas Lockhart <lockhart@fourpalms.org>
25 years ago
Bruce Momjian
89e6ce1245
Update Thomas Lockhart's email address to lockhart@fourpalms.org.
25 years ago
Tom Lane
61dd8b6dc4
Remove shift/reduce conflicts introduced by last change.
25 years ago
Peter Eisentraut
9c9a72b807
Repair the GEQO bibliography. It was marked up all wrong. Move some of
...
the info to the main bibliography.
25 years ago
Tom Lane
649d8543d3
Fix lpad() and rpad() to produce correct results in variable-length
...
multibyte encodings.
25 years ago
Peter Eisentraut
f8728467ff
Point to main CPAN site, and reword a little.
25 years ago
Tom Lane
d09f6f7741
Minor wordsmithing.
25 years ago
Peter Eisentraut
a6e704ce95
Make FreeBSD URL point to the right chapter again.
25 years ago
Michael Meskes
1e15f9e119
Fixed array pointers, no longer using void * in arithmetics.
25 years ago
Bruce Momjian
055d4f9208
Email address no longer valid.
25 years ago
Bruce Momjian
cc9ae0b63c
Update bad URL's with good ones.
25 years ago
Bruce Momjian
f88aa2d653
Update my2pg to version 1.22.
25 years ago
Tom Lane
6d6b3e911c
Add variants of digest() and hmac() that accept text inputs.
...
Marko Kreen says:
This is so obvious that I would like to make it 'official'.
Seems like the theology around bytea<>text casting kept me from
seeing the simple :)
25 years ago
Tom Lane
5b9a058384
Tweak LWLock algorithms so that an awakened waiter for a lock is not
...
granted the lock when awakened; the signal now only means that the lock
is potentially available. The waiting process must retry its attempt
to get the lock when it gets to run. This allows the lock releasing
process to re-acquire the lock later in its timeslice. Since LWLocks
are usually held for short periods, it is possible for a process to
acquire and release the same lock many times in a timeslice. The old
spinlock-based implementation of these locks allowed for that; but the
original coding of LWLock would force a process swap for each acquisition
if there was any contention. Although this approach reopens the door to
process starvation (a waiter might repeatedly fail to get the lock),
the odds of that being a big problem seem low, and the performance cost
of the previous approach is considerable.
25 years ago
Michael Meskes
54452833ef
Fixed parser to accept initializing expressions starting with "(".
25 years ago
Peter Eisentraut
731204e090
Editorial review
25 years ago
Tom Lane
a510bf4326
If we fail to fork a new backend process, (try to) report the failure
...
to the client before closing the connection. Before 7.2 this was done
correctly, but new code would simply close the connection with no report
to the client.
25 years ago
Bruce Momjian
96ad60e919
Fix ecpg wording to be consistent.
25 years ago
Bruce Momjian
88ebc0f2f7
Remove ecpg TODO section:
...
> Looking at this I also found an ecpg TODO list in the docs:
>
>
http://candle.pha.pa.us/main/writings/pgsql/sgml/ecpg-develop.html
>
> Seems that TODO section should be removed. Some items are done,
others
> are on the main TODO list.
That's correct. I did not fix the docs for quite some time.
Michael
--
Michael Meskes
25 years ago
Tom Lane
e59c15e4bb
Fix copy-and-paste brain damage. (These commands do not create a
...
database.)
25 years ago