summaryrefslogtreecommitdiff
path: root/src/backend/commands/vacuum.c
Commit message (Expand)AuthorAgeFilesLines
* pgindent run for 9.0Bruce Momjian2010-02-261-7/+7
* Fix typo in commentAlvaro Herrera2010-02-151-2/+2
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-141-7/+3
* Fix up rickety handling of relation-truncation interlocks.Tom Lane2010-02-091-8/+2
* Fix serious performance bug in new implementation of VACUUM FULL:Tom Lane2010-02-081-3/+4
* Remove old-style VACUUM FULL (which was known for a little while asTom Lane2010-02-081-2865/+19
* Create a "relation mapping" infrastructure to support changing the relfilenodesTom Lane2010-02-071-5/+4
* Support rewritten-based full vacuum as VACUUM FULL. TraditionalItagaki Takahiro2010-01-061-5/+22
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Revise pgstat's tracking of tuple changes to improve the reliability ofTom Lane2009-12-301-2/+1
* Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane2009-12-291-29/+2
* Allow read only connections during recovery, known as Hot Standby.Simon Riggs2009-12-191-14/+19
* Prevent indirect security attacks via changing session-local state withinTom Lane2009-12-091-7/+16
* Add exclusion constraints, which generalize the concept of uniqueness toTom Lane2009-12-071-2/+8
* Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane2009-11-161-15/+26
* Fix longstanding problems in VACUUM caused by untimely interruptionsAlvaro Herrera2009-11-101-9/+30
* Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane2009-10-261-2/+2
* Force VACUUM to recalculate oldestXmin even when we haven't changed ourTom Lane2009-09-011-3/+4
* Remove flatfiles.c, which is now obsolete.Alvaro Herrera2009-09-011-8/+3
* Track the current XID wrap limit (or more accurately, the oldest unfrozenTom Lane2009-08-311-8/+9
* Fix a violation of WAL coding rules in the recent patch to include anTom Lane2009-08-241-27/+45
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-29/+29
* Improve the IndexVacuumInfo/IndexBulkDeleteResult API to allow somewhat saneTom Lane2009-06-061-11/+23
* Modify the relcache to record the temp status of both local and nonlocalTom Lane2009-03-311-2/+2
* Implement "fastupdate" support for GIN indexes, in which we try to accumulateTom Lane2009-03-241-1/+3
* Add vacuum_freeze_table_age GUC option, to control when VACUUM shouldHeikki Linnakangas2009-01-161-5/+38
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Don't reset pg_class.reltuples and relpages in VACUUM, if any pages wereHeikki Linnakangas2008-12-171-21/+26
* Introduce visibility map. The visibility map is a bitmap with one bit perHeikki Linnakangas2008-12-031-1/+28
* Rethink the way FSM truncation works. Instead of WAL-logging FSMHeikki Linnakangas2008-11-191-3/+2
* Make relhasrules and relhastriggers work like relhasindex, namely we letTom Lane2008-11-101-7/+26
* Unite ReadBufferWithFork, ReadBufferWithStrategy, and ZeroOrReadBufferHeikki Linnakangas2008-10-311-23/+25
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-301-39/+8
* Initialize the minimum frozen Xid in vac_update_datfrozenxid usingAlvaro Herrera2008-09-111-28/+19
* Have autovacuum consider processing TOAST tables separately from theirAlvaro Herrera2008-08-131-15/+22
* Modify vacuum() to accept a single relation OID instead of a list (which weAlvaro Herrera2008-06-051-15/+18
* Add support for tracking call counts and elapsed runtime for user-definedTom Lane2008-05-151-2/+2
* Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera2008-05-121-3/+20
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-121-1/+3
* Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera2008-03-261-2/+3
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-261-2/+2
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-261-1/+2
* We no longer need a snapshot set after opening the finishing transaction: thisAlvaro Herrera2008-03-191-10/+1
* Fix vacuum so that autovacuum is really not cancelled when doing an emergencyAlvaro Herrera2008-03-141-6/+17
* Reduce memory consumption during VACUUM of large relations, by usingTom Lane2008-03-101-6/+5
* Improve error messages emitted when VACUUM and ANALYZE skip a table.Alvaro Herrera2008-02-201-4/+14
* Repair VACUUM FULL bug introduced by HOT patch: the original way ofTom Lane2008-02-111-7/+26
* Make standard maintenance operations (including VACUUM, ANALYZE, REINDEX,Tom Lane2008-01-031-1/+14
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* pgindent run for 8.3.Bruce Momjian2007-11-151-107/+114