summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this timeTom Lane2004-01-1413-140/+134
* pg_settings should have UPDATE privilege allowed to public.Tom Lane2004-01-141-1/+3
* The no-updates-to-system-catalogs-unless-usecatupd restriction shouldTom Lane2004-01-141-7/+13
* Revert ill-starred change of 13-Feb-02: it appeared to fix a problem ofTom Lane2004-01-141-24/+22
* Fix another place that wasn't maintaining AND/OR flatness of anTom Lane2004-01-122-15/+65
* Preserve AND/OR flatness during eval_const_expressions(). This seems aTom Lane2004-01-121-84/+154
* Translation updatesDennis Bjorklund2004-01-111-495/+552
* Add CREATE TRIGGER, CREATE INDEX, and CREATE SEQUENCE to the list ofNeil Conway2004-01-112-23/+61
* Drops in the CreateProcess calls for Win32 (essentially wrapping up theBruce Momjian2004-01-116-16/+100
* Implement "WITH / WITHOID OIDS" clause for CREATE TABLE AS. This isNeil Conway2004-01-109-33/+75
* Improve has_nullable_targetlist() to allow strict functions of simpleTom Lane2004-01-102-28/+36
* Translation updatesDennis Bjorklund2004-01-101-330/+298
* Translation updatesDennis Bjorklund2004-01-101-3125/+3354
* Allow BEGIN WORK to specify transaction isolation level, like STARTBruce Momjian2004-01-101-3/+3
* Fix subquery pullup logic to not be fooled when a view that appearsTom Lane2004-01-101-5/+33
* Remove ereport() from failed connection; already done, per Tom.Bruce Momjian2004-01-091-5/+1
* Fix for cancel key restarting postmaster, from ClaudioBruce Momjian2004-01-091-2/+2
* Change PG_DELAY from msec to usec and use it consistenly rather thanBruce Momjian2004-01-093-18/+7
* Add WIN32 pipe implementation that uses sockets.Bruce Momjian2004-01-091-4/+17
* Remove duplicate include of value.h. I think it got in because Tom and I bot...Bruce Momjian2004-01-091-2/+1
* Allow libpq to do thread-safe SIGPIPE handling. This allows it toBruce Momjian2004-01-091-1/+2
* [Forced commit to add log message that I fat-fingered last time]Tom Lane2004-01-081-2/+1
* makeTom Lane2004-01-071-3/+3
* Make some improvements in the intelligence of the partial-indexTom Lane2004-01-071-52/+190
* Add missing inclusion of nodes/value.h.Tom Lane2004-01-071-1/+2
* More janitorial work: remove the explicit casting of NULL literals to aNeil Conway2004-01-0761-336/+324
* Cleanup: move the 'Value' node into a separate file, rather than puttingNeil Conway2004-01-073-75/+79
* Apply the core parts of Dennis Bjorklund's patch to allow functionTom Lane2004-01-069-47/+192
* Final rearrangement of main postgresql child process (ie.Bruce Momjian2004-01-065-159/+250
* Suppress compiler warning (xlog_outrec is unused if not WAL_DEBUG).Tom Lane2004-01-061-2/+6
* Code cleanup, mostly in the smgr:Neil Conway2004-01-065-86/+62
* Remove unused 'noversion' command-line option processing from theNeil Conway2004-01-062-14/+3
* Make the 'wal_debug' GUC variable a boolean (rather than an integer), andNeil Conway2004-01-062-17/+34
* Instead of rechecking lossy index operators by putting them into theTom Lane2004-01-066-112/+129
* Adjust indexscan planning logic to keep RestrictInfo nodes associatedTom Lane2004-01-058-167/+372
* Trivial refactoring: move analysis of ViewStmt into its own function forNeil Conway2004-01-051-46/+56
* Fix three trivial typos in comments.Neil Conway2004-01-051-4/+4
* Improve UniquePath logic to detect the case where the input is alreadyTom Lane2004-01-054-9/+54
* Dept. of second thoughts: clause_selectivity shouldn't try to cache itsTom Lane2004-01-051-8/+29
* Add the ability to extract OR indexscan conditions from OR-of-ANDTom Lane2004-01-0512-278/+408
* There's no longer any good reason for genbki.sh and Gen_fmgrtab.sh toTom Lane2004-01-044-78/+24
* Fix discrepancy in prototypes for HPUX pg_dlerror.Tom Lane2004-01-042-7/+7
* Merge restrictlist_selectivity into clauselist_selectivity byTom Lane2004-01-049-191/+189
* Rewrite OR indexscan processing to be more flexible. We can now for theTom Lane2004-01-048-491/+428
* Adjust the definition of RestrictInfo's left_relids and right_relidsTom Lane2003-12-308-72/+88
* Instead of trying to force WHERE clauses into CNF or DNF normal form,Tom Lane2003-12-302-530/+180
* Avoid running out of memory during hash_create, by not passing aTom Lane2003-12-301-4/+10
* ShmemInitHash forgot to specify HASH_ALLOC flag bit in its hash_createTom Lane2003-12-301-2/+2
* Use hash table name, not one-size-fits-all 'DynaHashTable', to identifyTom Lane2003-12-291-3/+3
* Using canonicalize_qual() to get rid of duplicate index predicateTom Lane2003-12-291-15/+14