summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
2004-10-01Code review for NOWAIT patch: downgrade NOWAIT from fully reserved keywordTom Lane
2004-09-30Adjust index locking rules as per my proposal of earlier today. YouTom Lane
2004-09-27Code cleanup: don't bother casting the argument to pfree() to void *Neil Conway
2004-09-17Now that xmax and cmin are distinct fields again, we should zero xmax whenTom Lane
2004-09-16Add some marginal tweaks to eliminate memory leakages associated withTom Lane
2004-09-16RecentXmin is too recent to use as the cutoff point for accessingTom Lane
2004-09-16Restructure subtransaction handling to reduce resource consumption,Tom Lane
2004-09-13Redesign query-snapshot timing so that volatile functions in READ COMMITTEDTom Lane
2004-09-11Renumber SnapshotNow and the other special snapshot codes so thatTom Lane
2004-09-10Fire non-deferred AFTER triggers immediately upon query completion,Tom Lane
2004-09-06Fix incorrect ordering of smgr cleanup relative to buffer pin cleanupTom Lane
2004-09-06Downgrade LOG messages to DEBUG1 for normal recycling of xlog, clog,Tom Lane
2004-08-30Ensure that the remainder of the current pg_clog page is zeroed duringTom Lane
2004-08-30Fix failure to advance nextXID beyond subtransactions whose XIDs appearTom Lane
2004-08-30Another pgindent run with lib typedefs added.Bruce Momjian
2004-08-29Add WAL logging for CREATE/DROP DATABASE and CREATE/DROP TABLESPACE.Tom Lane
2004-08-29Widen xl_len field of XLogRecord header to 32 bits, so that we'll haveTom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-28Now that TransactionIdDidAbort doesn't think it should try to modifyTom Lane
2004-08-28Add missing Assert to make TransactionIdDidAbort more consistent withTom Lane
2004-08-28Fix relcache to account properly for subtransaction status of 'new'Tom Lane
2004-08-28Can't truncate pg_subtrans during a recovery checkpoint --- subtransTom Lane
2004-08-25Revise ResourceOwner code to avoid accumulating ResourceOwner objectsTom Lane
2004-08-23Rearrange pg_subtrans handling as per recent discussion. pg_subtransTom Lane
2004-08-22Tweak code so that pg_subtrans is never consulted for XIDs older thanTom Lane
2004-08-17Fix bug introduced into _bt_getstackbuf() on 2003-Feb-21: the initialTom Lane
2004-08-15Dept. of further reflection: I looked around to see if any other callersTom Lane
2004-08-12Cleanup Win32 COPY handling, and move archive examples to SGML.Bruce Momjian
2004-08-12Add mention of "WIN32" COPY.Bruce Momjian
2004-08-12Add make_native_path() because Win32 COPY is an internal CMD.EXE commandBruce Momjian
2004-08-11Fix failure to guarantee that a checkpoint will write out pg_clog updatesTom Lane
2004-08-09When expanding %p in archive_command or restore_command, translateTom Lane
2004-08-08Add a comment about why we always replay backup blocks from WAL.Tom Lane
2004-08-04Label CVS tip as 8.0devel instead of 7.5devel. Adjust various commentsTom Lane
2004-08-04Make use of backup label/history files to control recovery properly.Tom Lane
2004-08-03Add functions pg_start_backup, pg_stop_backup to create backup labelTom Lane
2004-08-03Fix misplacement of savepointLevel test, per report from Chris K-L.Tom Lane
2004-08-01Update the in-code documentation about the transaction system. Move itTom Lane
2004-08-01Error message style adjustments, per Alvaro Herrera.Tom Lane
2004-08-01Some mop-up work for savepoints (nested transactions). Store a smallTom Lane
2004-07-31plpgsql does exceptions.Tom Lane
2004-07-28Fix subtransaction behavior for large objects, temp namespace, files,Tom Lane
2004-07-27Replace nested-BEGIN syntax for subtransactions with spec-compliantTom Lane
2004-07-22Add cross-check that current timeline of pg_control is an ancestor ofTom Lane
2004-07-22Add a check on file size as an additional safety check that a WAL fileTom Lane
2004-07-21Invent WAL timelines, as per recent discussion, to make point-in-timeTom Lane
2004-07-19Remove unportable use of strptime() to parse recovery target time spec.Tom Lane
2004-07-19XLOG file archiving and point-in-time recovery. There are still someTom Lane
2004-07-17Invent ResourceOwner mechanism as per my recent proposal, and use it toTom Lane