summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2004-01-14The no-updates-to-system-catalogs-unless-usecatupd restriction shouldTom Lane
2004-01-14Revert ill-starred change of 13-Feb-02: it appeared to fix a problem ofTom Lane
2004-01-12Fix another place that wasn't maintaining AND/OR flatness of anTom Lane
2004-01-12Preserve AND/OR flatness during eval_const_expressions(). This seems aTom Lane
2004-01-11Translation updatesDennis Bjorklund
2004-01-11Add CREATE TRIGGER, CREATE INDEX, and CREATE SEQUENCE to the list ofNeil Conway
2004-01-11Drops in the CreateProcess calls for Win32 (essentially wrapping up theBruce Momjian
2004-01-10Implement "WITH / WITHOID OIDS" clause for CREATE TABLE AS. This isNeil Conway
2004-01-10Improve has_nullable_targetlist() to allow strict functions of simpleTom Lane
2004-01-10Translation updatesDennis Bjorklund
2004-01-10Translation updatesDennis Bjorklund
2004-01-10Allow BEGIN WORK to specify transaction isolation level, like STARTBruce Momjian
2004-01-10Fix subquery pullup logic to not be fooled when a view that appearsTom Lane
2004-01-09Remove ereport() from failed connection; already done, per Tom.Bruce Momjian
2004-01-09Fix for cancel key restarting postmaster, from ClaudioBruce Momjian
2004-01-09Change PG_DELAY from msec to usec and use it consistenly rather thanBruce Momjian
2004-01-09Add WIN32 pipe implementation that uses sockets.Bruce Momjian
2004-01-09Remove duplicate include of value.h. I think it got in because Tom and I bot...Bruce Momjian
2004-01-09Allow libpq to do thread-safe SIGPIPE handling. This allows it toBruce Momjian
2004-01-08[Forced commit to add log message that I fat-fingered last time]Tom Lane
2004-01-07makeTom Lane
2004-01-07Make some improvements in the intelligence of the partial-indexTom Lane
2004-01-07Add missing inclusion of nodes/value.h.Tom Lane
2004-01-07More janitorial work: remove the explicit casting of NULL literals to aNeil Conway
2004-01-07Cleanup: move the 'Value' node into a separate file, rather than puttingNeil Conway
2004-01-06Apply the core parts of Dennis Bjorklund's patch to allow functionTom Lane
2004-01-06Final rearrangement of main postgresql child process (ie.Bruce Momjian
2004-01-06Suppress compiler warning (xlog_outrec is unused if not WAL_DEBUG).Tom Lane
2004-01-06Code cleanup, mostly in the smgr:Neil Conway
2004-01-06Remove unused 'noversion' command-line option processing from theNeil Conway
2004-01-06Make the 'wal_debug' GUC variable a boolean (rather than an integer), andNeil Conway
2004-01-06Instead of rechecking lossy index operators by putting them into theTom Lane
2004-01-05Adjust indexscan planning logic to keep RestrictInfo nodes associatedTom Lane
2004-01-05Trivial refactoring: move analysis of ViewStmt into its own function forNeil Conway
2004-01-05Fix three trivial typos in comments.Neil Conway
2004-01-05Improve UniquePath logic to detect the case where the input is alreadyTom Lane
2004-01-05Dept. of second thoughts: clause_selectivity shouldn't try to cache itsTom Lane
2004-01-05Add the ability to extract OR indexscan conditions from OR-of-ANDTom Lane
2004-01-04There's no longer any good reason for genbki.sh and Gen_fmgrtab.sh toTom Lane
2004-01-04Fix discrepancy in prototypes for HPUX pg_dlerror.Tom Lane
2004-01-04Merge restrictlist_selectivity into clauselist_selectivity byTom Lane
2004-01-04Rewrite OR indexscan processing to be more flexible. We can now for theTom Lane
2003-12-30Adjust the definition of RestrictInfo's left_relids and right_relidsTom Lane
2003-12-30Instead of trying to force WHERE clauses into CNF or DNF normal form,Tom Lane
2003-12-30Avoid running out of memory during hash_create, by not passing aTom Lane
2003-12-30ShmemInitHash forgot to specify HASH_ALLOC flag bit in its hash_createTom Lane
2003-12-29Use hash table name, not one-size-fits-all 'DynaHashTable', to identifyTom Lane
2003-12-29Using canonicalize_qual() to get rid of duplicate index predicateTom Lane
2003-12-29Improve comment.Tom Lane
2003-12-29Tweak OpernameGetCandidates() to reduce palloc overhead --- profilingTom Lane