- 07 Mar, 2005 1 commit
-
-
Tom Lane authored
by non-default planner parameter settings.
-
- 06 Mar, 2005 1 commit
-
-
Tom Lane authored
on-the-fly, and thereby avoid blowing out memory when the planner has underestimated the hash table size. Hash join will now obey the work_mem limit with some faithfulness. Per my recent proposal (hash aggregate part isn't done yet though).
-
- 05 Mar, 2005 1 commit
-
-
Teodor Sigaev authored
-
- 04 Mar, 2005 1 commit
-
-
Tom Lane authored
the freelist, plus per-buffer spinlocks that protect access to individual shared buffer headers. This requires abandoning a global freelist (since the freelist is a global contention point), which shoots down ARC and 2Q as well as plain LRU management. Adopt a clock sweep algorithm instead. Preliminary results show substantial improvement in multi-backend situations.
-
- 02 Mar, 2005 10 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Allocated size based on format string.
-
Tom Lane authored
of AND and OR clauses. The key point here is that an OR on the predicate side has to be treated gingerly: we may be able to prove that the OR is implied even when no one of its components is implied. For example (x OR y) implies (x OR y OR z) even though no one of x, y, or z can be individually proven. This code handles both the example shown recently by Sergey Koshcheyev and the one shown last October by Dawid Kuroczko.
-
Bruce Momjian authored
* If vsnprintf() is not before snprintf() in this file, snprintf() * will call the system vsnprintf() on MinGW.
-
Bruce Momjian authored
-
- 01 Mar, 2005 9 commits
-
-
Neil Conway authored
-
Tom Lane authored
no held locks. This maintains the invariant that proclocks are present only for procs that are holding or awaiting a lock; when this is not true, LockRelease will fail. Per report from Stephen Clouse.
-
Tom Lane authored
representation of not wanting tracing to be limited by object OID.
-
Teodor Sigaev authored
-
Bruce Momjian authored
defining its own.
-
Bruce Momjian authored
> * -Make src/port/snprintf.c thread-safe
-
Tom Lane authored
indexscans involving partial indexes. These would always be dominated by a simple indexscan on such an index, so there's no point in considering them. Fixes overoptimism in a patch I applied last October.
-
Bruce Momjian authored
changes to make snprintf() vsnprintf() and printf() functions in src/port/snprintf.c thread-safe. Nicolai Tufar
-
Tom Lane authored
it was in 7.4, and add some comments explaining why it has to be this way. I broke it for OR'd index predicates in a fit of code cleanup last summer. Per example from Sergey Koshcheyev.
-
- 28 Feb, 2005 4 commits
-
-
Tom Lane authored
-
Bruce Momjian authored
its output can be used to select the proper printf outputs.
-
Bruce Momjian authored
Magnus Hagander
-
Neil Conway authored
Iijima, reviewed by Neil Conway. Catalog version number bumped, regression tests updated.
-
- 27 Feb, 2005 7 commits
-
-
Bruce Momjian authored
follows: Magnus Hagander
-
Bruce Momjian authored
consistency. Backpatch only bcc32.mak to 8.0.X.
-
Neil Conway authored
editorializing by Neil Conway. Catalog version bumped.
-
Bruce Momjian authored
-
Bruce Momjian authored
Magnus Hagander
-
Bruce Momjian authored
Magnus Hagander
-
Bruce Momjian authored
Mark Kirkwood
-
- 26 Feb, 2005 6 commits
-
-
Bruce Momjian authored
Improve documentation. Ed L.
-
Bruce Momjian authored
adjusting values: > But to be on the safe side, it would make sense to do something similar > to the BSD section, and comment about older distributions maybe needing > to manipulate /proc/kernel/* directly. Mark Kirkwood
-
Tom Lane authored
in favor of looking at the flat file copy of pg_database during backend startup. This should finally eliminate the various corner cases in which backend startup fails unexpectedly because it isn't able to distinguish live and dead tuples in pg_database. Simplify locking on pg_database to be similar to the rules used with pg_shadow and pg_group, and eliminate FlushRelationBuffers operations that were used only to reduce the odds of failure of GetRawDatabaseInfo. initdb forced due to addition of a trigger to pg_database.
-
Bruce Momjian authored
! authentication. Use of this environment variable is not ! recommended for security reasons (some operating systems ! allow non-root users to see process environment variables via ! <application>ps</>); instead consider using the ! <filename>~/.pgpass</> file (see <xref linkend="libpq-pgpass">).
-
Tom Lane authored
taken automatically, but this is only true with respect to user tables.
-
Bruce Momjian authored
-