summaryrefslogtreecommitdiff
path: root/src/backend/commands/vacuumlazy.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian2002-11-101-3/+2
* Performance improvement for MultiRecordFreeSpace on large relations ---Tom Lane2002-09-201-47/+53
* pgindent run.Bruce Momjian2002-09-041-3/+3
* Restructure local-buffer handling per recent pghackers discussion.Tom Lane2002-08-061-1/+9
* oid is needed, it is added at the end of the struct (after the nullBruce Momjian2002-07-201-3/+3
* Update copyright to 2002.Bruce Momjian2002-06-201-2/+2
* This patch wraps all accesses to t_xmin, t_cmin, t_xmax, and t_cmax inBruce Momjian2002-06-151-4/+4
* Make VACUUM handle schema-qualified relation names properly.Tom Lane2002-04-021-2/+5
* Change made to elog:Bruce Momjian2002-03-061-4/+4
* Commit to match discussed elog() changes. Only update is that LOG isBruce Momjian2002-03-021-15/+12
* Add CHECK_FOR_INTERRUPTS() in various strategic spots, per commentsTom Lane2002-01-061-1/+7
* Another pgindent run. Fixes enum indenting, and improves #endifBruce Momjian2001-10-281-4/+4
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-251-93/+99
* Implement new 'lightweight lock manager' that's intermediate betweenTom Lane2001-09-291-2/+2
* Give VACUUM its own GUC parameter for memory usage, rather thanTom Lane2001-09-211-7/+5
* Fix comment, add Assert.Tom Lane2001-09-041-3/+10
* Transaction IDs wrap around, per my proposal of 13-Aug-01. MoreTom Lane2001-08-261-5/+21
* Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane2001-08-101-2/+3
* New-style vacuum neglected to update pg_class statistics about indexesTom Lane2001-07-181-4/+85
* Restructure index AM interface for index building and index tuple deletion,Tom Lane2001-07-151-50/+29
* Initial implementation of concurrent VACUUM. Ifdef'd out for the moment,Tom Lane2001-07-131-0/+1026