- 12 Oct, 2005 7 commits
-
-
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 6 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
-
Tom Lane authored
traceable to grant options. As per my earlier proposal, a GRANT made by a role member has to be recorded as being granted by the role that actually holds the grant option, and not the member.
-
Tom Lane authored
-
- 09 Oct, 2005 1 commit
-
-
Tom Lane authored
like '23:59:60' because of fractional-second roundoff problems. Trying to control this upstream of the actual display code was hopeless; the right way is to explicitly round fractional seconds in the display code and then refigure the results if the fraction rounds up to 1. Per bug #1927.
-
- 08 Oct, 2005 8 commits
-
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
to call krb5_sname_to_principal() always. Also, use krb_srvname rather than the hardwired string 'postgres' as the appl_version string in the krb5_sendauth/recvauth calls, to avoid breaking compatibility with PG 8.0. Magnus Hagander
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 07 Oct, 2005 9 commits
-
-
Tom Lane authored
initialization. Add spinlocking, fix EXEC_BACKEND unsafeness.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
Per request from Marc Munro.
-
Tom Lane authored
testing ownership if the caller isn't interested in any GOPTION bits (which is the common case). It did not matter in 8.0 where the ownership test was just a trivial equality test, but it matters now.
-
Tom Lane authored
level for unrecognized win32 error codes to LOG, and make messages conform to style guide. Per old suggestion from Qingqing Zhou, which seems to have gotten lost in the shuffle.
-
Tom Lane authored
Remove unportable use of tfind/tsearch in favor of bsearch. Fix up random number generator to use random() not rand() and to actually honor its min/max arguments properly. That wasn't so important before, but with exposure of capability to ask for general ranges, it will be.
-
Tom Lane authored
-
Alvaro Herrera authored
-