summaryrefslogtreecommitdiff
path: root/src/backend/access
Commit message (Expand)AuthorAgeFilesLines
* Awhile back I added some code to StartupCLOG() to forcibly zero outTom Lane2004-12-221-13/+19
* Fix is-it-time-for-a-checkpoint logic so that checkpoint_segments canTom Lane2004-12-171-9/+26
* Calculation of keys_are_unique flag was wrong for cases involvingTom Lane2004-12-151-12/+12
* Change planner to use the current true disk file size as its estimate ofTom Lane2004-12-011-1/+5
* Minor adjustment of message style.Tom Lane2004-11-171-3/+3
* Micro-optimization of markpos() and restrpos() in btree and hash indexes.Neil Conway2004-11-172-12/+10
* Don't allow pg_start_backup() to be invoked if archive_command has notNeil Conway2004-11-171-1/+9
* There is no need for ReadBuffer() call sites to check that the returnedNeil Conway2004-11-141-31/+1
* Remove obsolete comment from btbuild() and hashbuild(): we no longer useNeil Conway2004-11-112-12/+2
* Small message clarificationsPeter Eisentraut2004-11-051-3/+3
* Change COMMIT back to the old behavior of emitting command tag COMMIT,Tom Lane2004-10-301-6/+6
* Rearrange order of pre-commit operations: must close cursors before doingTom Lane2004-10-291-19/+20
* Add DEBUG1-level logging of checkpoint start and end. Also, reduce theTom Lane2004-10-291-10/+34
* Make heap_fetch API more consistent by having the buffer remain pinnedTom Lane2004-10-262-20/+25
* Allow functions returning void or cstring to appear in FROM clause,Tom Lane2004-10-201-6/+6
* Give the ResourceOwner mechanism full responsibility for releasing bufferTom Lane2004-10-161-1/+5
* Repair possible failure to update hint bits back to disk, perTom Lane2004-10-153-28/+16
* Add 'int' cast for getpid() because some Solaris releases return longBruce Momjian2004-10-141-4/+4
* Message style revisionsPeter Eisentraut2004-10-122-10/+10
* Make getpid() use %d consistently for printing.Bruce Momjian2004-10-091-7/+4
* Adjust comments previously moved to column 1 by pgident.Bruce Momjian2004-10-071-2/+2
* PortalRun must guard against the possibility that the portal it'sTom Lane2004-10-041-3/+33
* Code review for NOWAIT patch: downgrade NOWAIT from fully reserved keywordTom Lane2004-10-011-2/+12
* Adjust index locking rules as per my proposal of earlier today. YouTom Lane2004-09-302-7/+15
* Code cleanup: don't bother casting the argument to pfree() to void *Neil Conway2004-09-271-7/+7
* Now that xmax and cmin are distinct fields again, we should zero xmax whenTom Lane2004-09-171-3/+5
* Add some marginal tweaks to eliminate memory leakages associated withTom Lane2004-09-161-7/+50
* RecentXmin is too recent to use as the cutoff point for accessingTom Lane2004-09-162-14/+14
* Restructure subtransaction handling to reduce resource consumption,Tom Lane2004-09-164-630/+847
* Redesign query-snapshot timing so that volatile functions in READ COMMITTEDTom Lane2004-09-131-5/+7
* Renumber SnapshotNow and the other special snapshot codes so thatTom Lane2004-09-111-9/+11
* Fire non-deferred AFTER triggers immediately upon query completion,Tom Lane2004-09-101-43/+39
* Fix incorrect ordering of smgr cleanup relative to buffer pin cleanupTom Lane2004-09-061-10/+14
* Downgrade LOG messages to DEBUG1 for normal recycling of xlog, clog,Tom Lane2004-09-062-5/+5
* Ensure that the remainder of the current pg_clog page is zeroed duringTom Lane2004-08-301-2/+33
* Fix failure to advance nextXID beyond subtransactions whose XIDs appearTom Lane2004-08-301-6/+42
* Another pgindent run with lib typedefs added.Bruce Momjian2004-08-302-6/+6
* Add WAL logging for CREATE/DROP DATABASE and CREATE/DROP TABLESPACE.Tom Lane2004-08-291-5/+7
* Widen xl_len field of XLogRecord header to 32 bits, so that we'll haveTom Lane2004-08-291-55/+61
* Pgindent run for 8.0.Bruce Momjian2004-08-2931-990/+1094
* Update copyright to 2004.Bruce Momjian2004-08-2943-86/+86
* Now that TransactionIdDidAbort doesn't think it should try to modifyTom Lane2004-08-281-6/+6
* Add missing Assert to make TransactionIdDidAbort more consistent withTom Lane2004-08-281-1/+2
* Fix relcache to account properly for subtransaction status of 'new'Tom Lane2004-08-284-18/+23
* Can't truncate pg_subtrans during a recovery checkpoint --- subtransTom Lane2004-08-281-3/+5
* Revise ResourceOwner code to avoid accumulating ResourceOwner objectsTom Lane2004-08-251-17/+38
* Rearrange pg_subtrans handling as per recent discussion. pg_subtransTom Lane2004-08-235-381/+282
* Tweak code so that pg_subtrans is never consulted for XIDs older thanTom Lane2004-08-222-40/+30
* Fix bug introduced into _bt_getstackbuf() on 2003-Feb-21: the initialTom Lane2004-08-171-1/+8
* Dept. of further reflection: I looked around to see if any other callersTom Lane2004-08-151-10/+20