OSDN Git Service

Add proallargtypes and proargmodes columns to pg_proc, as per my earlier
[pg-rex/syncrep.git] / src / backend / storage /
2005-03-22 Tom LaneCreate a routine PageIndexMultiDelete() that replaces...
2005-03-20 Tom LaneRemove unnecessary calls of FlushRelationBuffers: there...
2005-03-19 Tom LaneAdd temp_buffers GUC variable to allow users to determi...
2005-03-19 Tom LaneUpgrade localbuf.c to use a hash table instead of linea...
2005-03-18 Tom LaneNeed to reset local buffer pin counts, not only shared...
2005-03-18 Tom LaneAvoid infinite loop in InvalidateBuffer if we ourselves...
2005-03-14 Bruce MomjianIssue free space notices to both the user and the serve...
2005-03-12 Bruce MomjianAdd warning about the need to increase "max_fsm_relatio...
2005-03-11 Neil ConwaySlight refactoring and optimization of some code in...
2005-03-04 Tom LaneReplace the BufMgrLock with separate locks on the looku...
2005-03-01 Tom LaneRelease proclock immediately in RemoveFromWaitQueue...
2005-02-22 Bruce MomjianUse _() macro consistently rather than gettext(). ...
2005-02-04 Neil ConwayRefactor some duplicated code in lock.c: create UnGrant...
2005-02-03 Tom LaneEnsure that all details of the ARC algorithm are hidden...
2005-01-27 Neil ConwayChange heap_modifytuple() to require a TupleDesc rather...
2005-01-10 Tom LanePhase 1 of fix for 'SMgrRelation hashtable corrupted...
2005-01-03 Tom LaneRepair bufmgr deadlock problem reported by Michael...
2004-12-31 PostgreSQL DaemonTag appropriate files for rc3
2004-12-29 Tom LaneSupport Sun's compiler on SunOS4 (a/k/a Solaris 9)...
2004-12-29 Tom LaneRefactor EXEC_BACKEND code so that postmaster child...
2004-12-18 Bruce MomjianAllow NetBSD, m64k to compile the ASM spinlock code.
2004-11-24 Neil ConwayAssert that BufferIsPinned() in IncrBufferRefCount...
2004-11-20 Tom LaneReduce the default size of the local lock hash table...
2004-11-05 Peter EisentrautSmall message clarifications
2004-10-25 Neil ConwayModify hash_create() to elog(ERROR) if an error occurs...
2004-10-17 Tom LaneAllow background writing to be shut down by setting...
2004-10-16 Tom LaneGive the ResourceOwner mechanism full responsibility...
2004-10-16 Tom LaneRemove BufferLocks[] array in favor of a single pointer...
2004-10-15 Tom LaneRepair possible failure to update hint bits back to...
2004-10-07 Neil ConwayAllow the spinlock test to be compiled successfully...
2004-09-29 Tom LaneMinor adjustments to improve the accuracy of our comput...
2004-09-28 Tom LaneArrange to preallocate all required space for the buffe...
2004-09-16 Tom LaneRecentXmin is too recent to use as the cutoff point...
2004-09-16 Tom LaneRestructure subtransaction handling to reduce resource...
2004-09-12 Tom LaneWhen LockAcquire fails at the stage of creating a procl...
2004-09-06 Tom LaneFix a number of places where brittle data structures...
2004-09-06 Tom LaneFix incorrect ordering of smgr cleanup relative to...
2004-09-06 Tom LaneI can't see any good reason for DropRelFileNodeBuffers...
2004-08-31 Tom LaneFlushRelationBuffers was also being a bit cavalier...
2004-08-30 Tom LaneImprove spinlock selftest to make it able to detect...
2004-08-30 Tom LaneTweak md.c logic to cope with the situation where WAL...
2004-08-30 Bruce MomjianAnother pgindent run with lib typedefs added.
2004-08-29 Bruce MomjianPgindent run for 8.0.
2004-08-29 Bruce MomjianUpdate copyright to 2004.
2004-08-27 Tom LaneIntroduce local hash table for lock state, as per recen...
2004-08-26 Tom LaneFix user locks. Broken some time ago for all platforms...
2004-08-23 Tom LaneRearrange pg_subtrans handling as per recent discussion...
2004-08-22 Tom LaneTweak code so that pg_subtrans is never consulted for...
2004-08-15 Tom LaneDept. of further reflection: I looked around to see...
2004-08-15 Tom LaneXmin calculations should consider only top transaction...
2004-08-01 Tom LaneSome mop-up work for savepoints (nested transactions...
2004-07-31 Tom LaneRestructure error handling as recently discussed. ...
2004-07-28 Tom LaneFix subtransaction behavior for large objects, temp...
2004-07-27 Tom LaneReplace nested-BEGIN syntax for subtransactions with...
2004-07-21 Tom LaneInvent WAL timelines, as per recent discussion, to...
2004-07-17 Tom LaneInvent ResourceOwner mechanism as per my recent proposa...
2004-07-11 Tom LaneMove TablespaceCreateDbspace() call into smgrcreate...
2004-07-01 Tom LaneFix seriously nasty memory leak in new TransactionIdIsI...
2004-07-01 Tom LaneNested transactions. There is still much left to do...
2004-06-19 Tom LaneLooks like s_lock_test needs <time.h> on some platforms.
2004-06-19 Tom Lanes_lock_test requires libpgport to build now.
2004-06-18 Tom LaneTablespaces. Alternate database locations are dead...
2004-06-11 Tom LaneStrategyDirtyBufferList wasn't being careful to honor...
2004-06-11 Tom LaneAdd some code to Assert that when we release pin on...
2004-06-09 Bruce MomjianPrevious code cleanup was for bufpage.c, not bufmgr.c.
2004-06-08 Bruce MomjianStylistic changes in bufmgr.c
2004-06-05 Tom LaneTweak palloc/repalloc to allow zero bytes to be request...
2004-06-03 Tom LaneAdjust our timezone library to use pg_time_t (typedef...
2004-06-02 Bruce MomjianPer previous discussions, here are two functions to...
2004-06-02 Tom LaneAdjust btree index build to not use shared buffers...
2004-05-31 Tom LaneAdditional mop-up for sync-to-fsync changes: avoid...
2004-05-31 Tom LaneMinor code rationalization: FlushRelationBuffers just...
2004-05-31 Tom LanePer previous discussions, get rid of use of sync(2...
2004-05-30 Tom LaneImplement new PostmasterIsAlive() check for WIN32,...
2004-05-29 Tom LaneSeparate out bgwriter code into a logically separate...
2004-05-28 Tom LaneCode review for EXEC_BACKEND changes. Reduce the numbe...
2004-05-23 Tom LaneHandle impending sinval queue overflow by means of...
2004-05-08 Tom LaneGet rid of rd_nblocks field in relcache entries. Turns...
2004-04-25 Neil ConwayTiny assorted fixes: correct a typo in a comment in...
2004-04-22 Neil ConwayMake LocalRefCount and PrivateRefCount arrays of int32...
2004-04-21 Tom LaneAnother round of code cleanup on bufmgr. Use BM_VALID...
2004-04-19 Tom LaneCode review for ARC patch. Eliminate static variables...
2004-04-19 Bruce Momjian* Most changes are to fix warnings issued when compilin...
2004-03-23 Bruce MomjianWhen changing select() calls for delays into pg_usleep...
2004-03-15 Bruce Momjian* postc: cleanup pmdaemonize under win32; missed failur...
2004-02-25 Bruce MomjianFor application to HEAD, following community review.
2004-02-23 Tom LaneReplace opendir/closedir calls throughout the backend...
2004-02-23 Tom LaneDo a direct probe during postmaster startup to determin...
2004-02-18 Bruce MomjianHere is a patch that implements setitimer() on win32...
2004-02-12 Tom LaneAvoid delaying postmaster shutdown by up to 10 seconds...
2004-02-12 Jan WieckFixed bug where FlushRelationBuffers() did call Strateg...
2004-02-11 Tom LaneCommit the reasonably uncontroversial parts of J.R...
2004-02-10 Tom LaneCentralize implementation of delay code by creating...
2004-02-10 Tom LaneRestructure smgr API as per recent proposal. smgr...
2004-02-08 Neil ConwayWin32 signals cleanup. Patch by Magnus Hagander, with...
2004-02-06 Jan WieckCost based vacuum delay feature.
2004-02-04 Jan WieckBacking out the background writer sync() option.
2004-01-30 Bruce MomjianRemove sleep() and use single PG_SLEEP call for Win32...
2004-01-27 Bruce MomjianHere's the latest win32 signals code, this time in...
2004-01-26 Bruce Momjian[all] Removed call to getppid in SendPostmasterSignal...
next