- 13 Oct, 2005 14 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
applications that use FILE pointers.
-
Bruce Momjian authored
WAL and the interaction of the new full_page_writes parameter with PITR. The too-small WAL first sect1 has been merged with the one following sect1 for clarity. Some minor comments have been made in the WAL config section also. Passes SGML make and proofread for typos. Files changed: patching file doc/src/sgml/backup.sgml patching file doc/src/sgml/config.sgml patching file doc/src/sgml/wal.sgml Simon Riggs
-
Bruce Momjian authored
-
Bruce Momjian authored
that is too fragile.
-
Tom Lane authored
syntax checking to plpgsql: check_sql_expr() wasn't being called by make_select_stmt(), so that there was no SQL syntax check for SELECT statements.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Neil Conway authored
-
Neil Conway authored
that is protected by a spinlock must be volatile, per recent discussion.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Prevent PQfnumber() from lowercasing unquoted the column name > > PQfnumber() should never have been doing lowercasing, but historically > it has so we need a way to prevent it >
-
Tom Lane authored
make_restrictinfo_from_bitmapqual. The likelihood of finding duplicates seems much less than in the AND-subclause case, and the cost much higher, because OR lists with hundreds or even thousands of subclauses are not uncommon. Per discussion with Ilia Kantor and andrew@supernews.
-
- 12 Oct, 2005 13 commits
-
-
Tom Lane authored
-
Bruce Momjian authored
< * Prevent libpq's PQfnumber() from lowercasing the column name < < One idea is to lowercase all identifiers except those that are < surrounded by quotes. <
-
Tom Lane authored
the wrong buffer dirty when trying to kill a dead index entry that's on a page after the one it started on. No risk of data corruption, just inefficiency, but still a bug.
-
Tom Lane authored
protected data structures and not using a volatile pointer for same.
-
Tom Lane authored
pointers, to ensure that compilers won't rearrange accesses to occur while we're not holding the buffer header spinlock. It's probably not necessary to mark volatile in every single place in bufmgr.c, but better safe than sorry. Per trouble report from Kevin Grittner.
-
Bruce Momjian authored
Andrew Dunstan
-
Bruce Momjian authored
< < * Add code to detect an SMP machine and handle spinlocks accordingly < from distributted.net, http://www1.distributed.net/source, < in client/common/cpucheck.cpp < < On SMP machines, it is possible that locks might be released shortly, < while on non-SMP machines, the backend should sleep so the process < holding the lock can complete and release it.
-
Bruce Momjian authored
< o %Add dumping of comments on composite type columns < o %Add dumping of comments on index columns < o Stop dumping CASCADE on DROP TYPE commands in clean mode > o %Add dumping of comments on index columns and composite type columns 604a603 > o Stop dumping CASCADE on DROP TYPE commands in clean mode
-
Bruce Momjian authored
< o %Replace crude DELETE FROM method of pg_dumpall --clean for < cleaning of roles with separate DROP commands 608a607 >
-
Bruce Momjian authored
< > o Allow pg_dump --clean to drop roles that own objects or have > privileges
-
Peter Eisentraut authored
-
Bruce Momjian authored
< * Prevent libpq's PQfnumber() from lowercasing the column name? > * Prevent libpq's PQfnumber() from lowercasing the column name > > One idea is to lowercase all identifiers except those that are > surrounded by quotes. >
-
Bruce Momjian authored
> o Add options like pg_restore -l and -L to pg_dump
-
- 11 Oct, 2005 9 commits
-
-
Bruce Momjian authored
> o Allow selection of individual object(s) of all types, not just > tables > o In a selective dump, allow dumping of an object and all its > dependencies
-
PostgreSQL Daemon authored
must commit *after* autoconf, not before
-
PostgreSQL Daemon authored
update to beta3 before tagging ...
-
Neil Conway authored
-
Tom Lane authored
-
Tom Lane authored
whether we seem to be running in a uniprocessor or multiprocessor. The adjustment rules could probably still use further tweaking, but I'm convinced this should be a win overall.
-
Tom Lane authored
The pre-test has been shown to be a big loss on Opterons and at best a wash on EM64T.
-
Tom Lane authored
valid type information if they are asked to fetch the values part of a pg_statistic slot; these arguments are unneeded if fetching only the numbers part. Use this to save a catcache lookup in btcostestimate, which is looking like a bit of a hotspot in recent profiling. Not a big savings, but since it's essentially free, might as well do it.
-
Tom Lane authored
A RestrictInfo representing an OR clause now contains two versions of the contained expression, one with sub-RestrictInfos and one without. clause_selectivity() should descend to the version with sub-RestrictInfos so that it has a chance of caching its results for the OR's sub-clauses. Failing to do so resulted in redundant planner effort.
-
- 10 Oct, 2005 4 commits
-
-
Tom Lane authored
emit when given the --clean option, in favor of individual DROP ROLE commands. The old technique could not possibly work in 8.1, and was never a very good idea anyway IMHO. The DROP ROLE approach has the defect that the DROPs will fail for roles that own objects or have privileges, but perhaps we can improve that later.
-
Tom Lane authored
ie removing shared-dependency entries, should happen before non-rollbackable ones. That way a failure during the rollbackable part doesn't leave us with inconsistent state.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-