summaryrefslogtreecommitdiff
path: root/src/backend/commands/vacuumlazy.c
Commit message (Expand)AuthorAgeFilesLines
* Do all-visible handling in lazy_vacuum_page() outside its critical section.Andres Freund2014-06-201-9/+17
* pgindent run for 9.4Bruce Momjian2014-05-061-13/+13
* Set the all-visible flag on heap page before writing WAL record, not after.Heikki Linnakangas2014-04-171-5/+11
* Introduce logical decoding.Robert Haas2014-03-031-2/+3
* Separate multixact freezing parameters from xid'sAlvaro Herrera2014-02-131-2/+4
* Fix VACUUM's reporting of dead-tuple counts to the stats collector.Tom Lane2014-01-181-2/+11
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Change the way we mark tuples as frozen.Robert Haas2013-12-221-4/+4
* Rework tuple freezing protocolAlvaro Herrera2013-12-161-5/+26
* Fix WAL-logging of setting the visibility map bit.Heikki Linnakangas2013-12-131-15/+12
* New autovacuum_work_mem parameterSimon Riggs2013-12-121-8/+11
* Don't include unused space in LOG_NEWPAGE records.Heikki Linnakangas2013-12-041-5/+1
* Fix full-table-vacuum request mechanism for MultiXactIdsAlvaro Herrera2013-11-291-4/+14
* Don't update relfrozenxid if any pages were skipped.Heikki Linnakangas2013-11-271-10/+21
* Count locked pages that don't need vacuuming as scanned.Heikki Linnakangas2013-11-181-0/+1
* Fix two bugs in setting the vm bit of empty pages.Heikki Linnakangas2013-10-231-1/+6
* Fix spurious warning after vacuuming a page on a table with no indexes.Heikki Linnakangas2013-09-261-0/+1
* Rename various "freeze multixact" variablesAlvaro Herrera2013-09-161-6/+6
* Adjust HeapTupleSatisfies* routines to take a HeapTuple.Robert Haas2013-07-221-5/+8
* Ensure that XLOG_HEAP2_VISIBLE always targets an initialized page.Robert Haas2013-06-061-0/+18
* pgindent run for release 9.3Bruce Momjian2013-05-291-31/+30
* Move materialized views' is-populated status into their pg_class entries.Tom Lane2013-05-061-6/+0
* Prevent (auto)vacuum from truncating first page of populated matview.Kevin Grittner2013-05-021-0/+6
* Ensure we MarkBufferDirty before visibilitymap_set()Simon Riggs2013-04-301-21/+26
* Ensure ANALYZE phase is not skipped because of canceled truncate.Kevin Grittner2013-04-291-36/+22
* Allow I/O reliability checks using 16-bit checksumsSimon Riggs2013-03-221-7/+7
* Remove PageSetTLI and rename pd_tli to pd_checksumSimon Riggs2013-03-181-2/+0
* Correct tense in log messagePeter Eisentraut2013-02-231-1/+1
* Update visibility map in the second phase of vacuum.Heikki Linnakangas2013-02-131-4/+129
* Improve concurrency of foreign key lockingAlvaro Herrera2013-01-231-6/+18
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Make some messages more consistent in stylePeter Eisentraut2012-12-211-1/+1
* Fix performance problems with autovacuum truncation in busy workloads.Kevin Grittner2012-12-111-64/+166
* Avoid holding vmbuffer pin after VACUUM.Simon Riggs2012-12-031-7/+9
* Split tuple struct defs from htup.h to htup_details.hAlvaro Herrera2012-08-301-0/+1
* Split heapam_xlog.h from heapam.hAlvaro Herrera2012-08-281-0/+1
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-30/+30
* Fix more crash-safe visibility map bugs, and improve comments.Robert Haas2012-06-071-5/+29
* Prevent index-only scans from returning wrong answers under Hot Standby.Robert Haas2012-04-261-2/+9
* Rearrange lazy_scan_heap to avoid visibility map race conditions.Robert Haas2012-04-231-39/+46
* After PageSetAllVisible, use MarkBufferDirty.Robert Haas2012-04-181-2/+2
* Fix typo in comment.Robert Haas2012-04-131-1/+1
* Update lazy_scan_heap header comment.Robert Haas2012-04-131-6/+11
* Code cleanup for heap_freeze_tuple.Robert Haas2012-03-261-2/+1
* Fix broken logic in lazy_vacuum_heap.Robert Haas2012-01-131-0/+4
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Improve logging of autovacuum I/O activityAlvaro Herrera2011-11-251-4/+28
* Rewrite comment for slightly greater accuracy.Robert Haas2011-11-081-2/+3
* Make VACUUM avoid waiting for a cleanup lock, where possible.Robert Haas2011-11-071-4/+82
* Measure the number of all-visible pages for use in index-only scan costing.Tom Lane2011-10-141-3/+17