summaryrefslogtreecommitdiff
path: root/src/backend/commands/vacuumlazy.c
Commit message (Expand)AuthorAgeFilesLines
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-1/+3
* Clean up API for ambulkdelete/amvacuumcleanup as per today's discussion.Tom Lane2006-05-021-104/+43
* Clean up WAL/buffer interactions as per my recent proposal. Get rid of theTom Lane2006-03-311-18/+13
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Prevent lazy_space_alloc from making requests that exceed MaxAllocSize,Tom Lane2006-03-041-1/+4
* Skip ambulkdelete scan if there's nothing to delete and the index is notTom Lane2006-02-111-1/+5
* Revert based on Tom's recommendation:Bruce Momjian2006-02-111-7/+4
* Allow VACUUM to complete faster by avoiding scanning the indexes when noBruce Momjian2006-02-111-4/+7
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-15/+15
* Remove the t_datamcxt field of HeapTupleData. This was introduced forTom Lane2005-11-201-3/+1
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-97/+93
* Separate out the VacRUsage stuff as an independent module, in preparationTom Lane2005-10-031-21/+22
* Take exclusive buffer lock in scan_heap() to eliminate some corner casesTom Lane2005-09-221-2/+2
* Clean up a couple of ad-hoc computations of the maximum number of tuplesTom Lane2005-09-021-7/+4
* Convert the arithmetic for shared memory size calculation from 'int'Tom Lane2005-08-201-6/+6
* Clean up a number of autovacuum loose ends. Make the stats collectorTom Lane2005-07-291-3/+3
* Integrate autovacuum functionality into the backend. There's still aTom Lane2005-07-141-1/+6
* Split the shared-memory array of PGPROC pointers out of the sinvalTom Lane2005-05-191-2/+1
* Repair very-low-probability race condition between relation extensionTom Lane2005-05-071-2/+24
* Remove lazy_update_relstats; go back to having VACUUM just record theTom Lane2005-03-251-60/+13
* Remove unnecessary calls of FlushRelationBuffers: there is no needTom Lane2005-03-201-11/+1
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-311-2/+2
* Change planner to use the current true disk file size as its estimate ofTom Lane2004-12-011-16/+107
* In the new dispensation where REINDEX doesn't take exclusive lock onTom Lane2004-10-251-7/+17
* Repair possible failure to update hint bits back to disk, perTom Lane2004-10-151-25/+8
* Adjust index locking rules as per my proposal of earlier today. YouTom Lane2004-09-301-3/+3
* Pgindent run for 8.0.Bruce Momjian2004-08-291-18/+18
* Update copyright to 2004.Bruce Momjian2004-08-291-2/+2
* Invent WAL timelines, as per recent discussion, to make point-in-timeTom Lane2004-07-211-2/+2
* Tweak palloc/repalloc to allow zero bytes to be requested, as per recentTom Lane2004-06-051-4/+1
* Minor code rationalization: FlushRelationBuffers just returns void,Tom Lane2004-05-311-4/+2
* Get rid of rd_nblocks field in relcache entries. Turns out this wasTom Lane2004-05-081-6/+2
* Tiny assorted fixes: correct a typo in a comment in vacuumlazy.c, removeNeil Conway2004-04-251-2/+2
* Check only live tuples for OID validity, to avoid issues after ALTERTom Lane2004-02-121-9/+9
* Centralize implementation of delay code by creating a pg_usleep()Tom Lane2004-02-101-68/+4
* Restructure smgr API as per recent proposal. smgr no longer depends onTom Lane2004-02-101-5/+6
* Cost based vacuum delay feature.Jan Wieck2004-02-061-1/+66
* Rename SortMem and VacuumMem to work_mem and maintenance_work_mem.Tom Lane2004-02-031-10/+10
* $Header: -> $PostgreSQL Changes ...PostgreSQL Daemon2003-11-291-1/+1
* Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut2003-09-251-7/+7
* Update copyrights to 2003.Bruce Momjian2003-08-041-2/+2
* pgindent run.Bruce Momjian2003-08-041-14/+16
* Another round of error message editing, covering backend/commands/.Tom Lane2003-07-201-36/+60
* Make debug_ GUC varables output DEBUG1 rather than LOG, and mention inBruce Momjian2003-05-271-2/+2
* Reimplement free-space-map management as per recent discussions.Tom Lane2003-03-041-19/+28
* During VACUUM FULL, truncate off any deletable pages that are at theTom Lane2003-02-241-5/+6
* Improve coding of log_heap_clean() and heap_xlog_clean().Tom Lane2003-02-231-5/+3
* More infrastructure for btree compaction project. Tree-traversal codeTom Lane2003-02-221-39/+39
* Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian2002-11-131-3/+2
* Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian2002-11-111-2/+3