| Age | Commit message (Collapse) | Author |
|
Add 'do { ... } while (0)' decoration to eliminate compiler warnings.
|
|
stub) into the rest of the system. Adopt a cleaner approach to preventing
deadlock in concurrent heap_updates: allow RelationGetBufferForTuple to
select any page of the rel, and put the onus on it to lock both buffers
in a consistent order. Remove no-longer-needed isExtend hack from
API of ReleaseAndReadBuffer.
|
|
have any newly-dead tuples on them. This is a longstanding deficiency
that prevents VACUUM from compacting a file as much as one would expect.
Change requires fixing repair_frag to not assume that fraged_pages is
a subset of vacuum_pages.
Also make some further cleanups of places that assumed page numbers fit
in int and tuple counts fit in uint32.
|
|
Barry Lind
|
|
after writing/unpinning it. An actual failure is unlikely, unless the
system is tremendously short of buffers ... but a bug is a bug.
|
|
for speed.
Jan
|
|
|
|
|
|
do anything yet, but it has the necessary connections to initialization
and so forth. Make some gestures towards allowing number of blocks in
a relation to be BlockNumber, ie, unsigned int, rather than signed int.
(I doubt I got all the places that are sloppy about it, yet.) On the
way, replace the hardwired NLOCKS_PER_XACT fudge factor with a GUC
variable.
|
|
message clean up.
|
|
confusing definitions in it.
|
|
Now the version is 7.01.0006.
|
|
directly, rather than through SetConfigOption().
|
|
directly, rather than through SetConfigOption().
|
|
IS TRUE, etc, with some degree of verisimilitude. Split out
selectivity support functions from builtins.h into a new header
file selfuncs.h, so as to reduce the number of header files builtins.h
must depend on. Fix a few missing inclusions exposed thereby.
From Joe Conway, with some kibitzing from Tom Lane.
|
|
|
|
Here is a patch which inspired by Michael Stephens that should work
Dave Cramer
|
|
|
|
|
|
message in that case.
|
|
> > secure_ctx changes too. it will be PGC_BACKEND after '-p'.
>
> Oh, okay, I missed that part. Could we see the total state of the
> patch --- ie, a diff against current CVS, not a bunch of deltas?
> I've gotten confused about what's in and what's out.
Ok, here it is. Cleared the ctx comment too - after -p
it will be PGC_BACKEND in any case.
Marko Kreen
|
|
sequence.
|
|
Alex Pilosov
|
|
Jan
|
|
it's hard to keep such massive changes in sync with the tree
so I need to get it in and work from there now).
Jan
|
|
oid values.
|
|
other than tablename_pkey.
|
|
return without waiting if we can't get the lock immediately).
Not used yet, but will be needed for concurrent VACUUM.
|
|
|
|
|
|
|
|
ordering of startup operations in one or two places.
|
|
(see http://mail.gnu.org/pipermail/libtool/2000-July/001824.html). But
apparently it should still be present with -Bsymbolic.
|
|
from Johnny C. Lam <lamj@stat.cmu.edu> via D'Arcy
|
|
to be missing in some header files (on OpenBSD 2.8?).
|
|
|
|
|
|
a new postmaster child process. This should eliminate problems with
authentication blocking (e.g., ident, SSL init) and also reduce problems
with the accept queue filling up under heavy load.
The option to send elog output to a different file per backend (postgres -o)
has been disabled for now because the initialization would have to happen
in a different order and it's not clear we want to keep this anyway.
|
|
|
|
make sure that we are using the right #defines in pgmodule.c but the
OIDs are never actually expected to change.
|
|
by multiple SQLError calls.
|
|
broken, and its impossible to make a shared library when compiling with
both CCDLFLAGS and LDDLFAGS, you have to pick one or the other.
Alex Pilosov
|
|
|
|
tests to return the correct results per SQL9x when given NULL inputs.
Reimplement these tests as well as IS [NOT] NULL to have their own
expression node types, instead of depending on special functions.
From Joe Conway, with a little help from Tom Lane.
|
|
|
|
SI messages now include the relevant database OID, so that operations
in one database do not cause useless cache flushes in backends attached
to other databases. Declare SI messages properly using a union, to
eliminate the former assumption that Oid is the same size as int or Index.
Rewrite the nearly-unreadable code in inval.c, and document it better.
Arrange for catcache flushes at end of command/transaction to happen before
relcache flushes do --- this avoids loading a new tuple into the catcache
while setting up new relcache entry, only to have it be flushed again
immediately.
|
|
|
|
Quick hack -- need to decide which header should include the other.
|
|
|
|
1) ERRORs cause an SQL_ERROR and the SQLSTATE='S1000'.
2) NOTICEs cause an SQL_SUCCESS_WITH_INFO and the succeeding
SQLError() returns the NOTICE message.
|