summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2005-12-20Teach planner how to rearrange join order for some classes of OUTER JOIN.Tom Lane
2005-12-17Fix typo.Bruce Momjian
2005-12-17Update s_lock.c comments.Bruce Momjian
2005-12-17Update ASM comments.Bruce Momjian
2005-12-16Rethink prior patch to filter out dead backend entries from the pgstatsTom Lane
2005-12-14Defend against crash while processing Describe Statement or Describe PortalTom Lane
2005-12-11Divide the lock manager's shared state into 'partitions', so as toTom Lane
2005-12-09Allow installation into directories containing spaces in the name.Peter Eisentraut
2005-12-09I reconfirmed MS-VC6. Thank you for wonderful correspondence.Bruce Momjian
2005-12-09Simplify lock manager data structures by making a clear separation betweenTom Lane
2005-12-08Disble some Win32-specific code in win32-client-only builds:Bruce Momjian
2005-12-07Push the responsibility for handling ignore_killed_tuples down intoTom Lane
2005-12-07Spell "explicitly" correctly, per Simon.Tom Lane
2005-12-06Get rid of slru.c's hardwired insistence on a fixed number of slots perTom Lane
2005-12-06Add documentation on the use of *printf() macros and libintl.Bruce Momjian
2005-12-06Arrange for read-only accesses to SLRU page buffers to take only a sharedTom Lane
2005-12-06Put undef's before extern declarations that need 'em, per Andrew Dunstan.Tom Lane
2005-12-06Make Win32 build use our port/snprintf.c routines, instead of dependingTom Lane
2005-12-03Tweak indexscan machinery to avoid taking an AccessShareLock on an indexTom Lane
2005-12-02Adjust scan plan nodes to avoid getting an extra AccessShareLock on aTom Lane
2005-12-01Refactor some bits in aclchk.c in order to reduce code duplication.Alvaro Herrera
2005-11-29Fix EXPLAIN and EXECUTE commands to pass portal parameters through toTom Lane
2005-11-28Tweak hash join code to use an additional heuristic for deciding whetherTom Lane
2005-11-28Change the parser to translate "foo [NOT] IN (expression-list)" toTom Lane
2005-11-26Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane
2005-11-26Change seqscan logic so that we check visibility of all tuples on a pageTom Lane
2005-11-25Teach planner and executor to handle ScalarArrayOpExpr as an indexableTom Lane
2005-11-23Get rid of ExecAssignResultTypeFromOuterPlan() and make all plan node typesTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-22 DROP DATABASE IF EXISTS variantAndrew Dunstan
2005-11-21Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate theAlvaro Herrera
2005-11-20Remove the t_datamcxt field of HeapTupleData. This was introduced forTom Lane
2005-11-20Modify tuptoaster's API so that it does not try to modify the passedTom Lane
2005-11-19DROP objecttype IF EXISTS for the following objects:Andrew Dunstan
2005-11-18Mop-up for nulls-in-arrays patch: fix some places that access arrayTom Lane
2005-11-17Make SQL arrays support null elements. This commit fixes the core arrayTom Lane
2005-11-17DropRelFileNodeBuffers failed to fix the state of the lookup hash tableTom Lane
2005-11-14Restore the former RestrictInfo field valid_everywhere (but invert the flagTom Lane
2005-11-14Prevent ExecInsert() and ExecUpdate() from scribbling on the result tupleTom Lane
2005-11-07R-tree is dead ... long live GiST.Tom Lane
2005-11-06Add simple sanity checks on newly-read pages to GiST, too.Tom Lane
2005-11-06Add defenses to btree and hash index AMs to do simple sanity checksTom Lane
2005-11-05Clean up representation of SLRU page state. This is the cleaner fixTom Lane
2005-11-05Brand HEAD branch as 8.2devel.Tom Lane
2005-11-05Repair an error introduced by log_line_prefix patch: it is not acceptableTom Lane
2005-11-04Disregard superuserness when checking to see if a role GRANT wouldTom Lane
2005-11-03Rename the members of CommandDest enum so they don't collide with other uses ofAlvaro Herrera
2005-10-26Adjust parser so that POSTQUEL-style implicit RTEs are stored withTom Lane
2005-10-25Fix Windows setitimer() emulation to not depend on delivering an APCTom Lane
2005-10-22Temporarily disable Qingqing's Windows signal processing patch, so thatTom Lane