aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/heap/heapam.c
Commit message (Expand)AuthorAge
...
* Unite ReadBufferWithFork, ReadBufferWithStrategy, and ZeroOrReadBufferHeikki Linnakangas2008-10-31
* No need for extra code to log freezing zero tuples. Callers already check thatAlvaro Herrera2008-10-27
* Modify the parser's error reporting to include a specific hint for the caseTom Lane2008-10-08
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-30
* Initialize the minimum frozen Xid in vac_update_datfrozenxid usingAlvaro Herrera2008-09-11
* Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas2008-08-11
* Clean up the use of some page-header-access macros: principally, useTom Lane2008-07-13
* Improve our #include situation by moving pointer types away from theAlvaro Herrera2008-06-19
* Refactor XLogOpenRelation() and XLogReadBuffer() in preparation for relationHeikki Linnakangas2008-06-12
* Move BufferGetPageSize and BufferGetPage from bufpage.h to bufmgr.h. It isAlvaro Herrera2008-06-08
* Put back bufmgr.h in bufpage.h -- it is needed by some macros.Alvaro Herrera2008-05-12
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-12
* Remove heap_release_fetch, which is no longer used anywhere; this simplifiesTom Lane2008-04-03
* Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera2008-03-26
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-26
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-26
* Refactor heap_page_prune so that instead of changing item states on-the-fly,Tom Lane2008-03-08
* Fix PREPARE TRANSACTION to reject the case where the transaction has dropped aTom Lane2008-03-04
* Add a GUC variable "synchronize_seqscans" to allow clients to disable the newTom Lane2008-01-30
* Fix CREATE INDEX CONCURRENTLY so that it won't use synchronized scan forTom Lane2008-01-14
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane2007-11-30
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Use "alternative" instead of "alternate" where it is clearer.Peter Eisentraut2007-11-07
* Tweak toast-related logic in heapam.c so that the toaster is only invokedTom Lane2007-10-16
* Improve handling of prune/no-prune decisions by storing a page's oldestTom Lane2007-09-21
* HOT updates. When we update a tuple without changing any of its indexedTom Lane2007-09-20
* Redefine the lp_flags field of item pointers as having four states, ratherTom Lane2007-09-12
* Don't take ProcArrayLock while exiting a transaction that has no XID; there isTom Lane2007-09-07
* Implement lazy XID allocation: transactions that do not modify any databaseTom Lane2007-09-05
* Fix oversight in async-commit patch: there were some places in heapam.cTom Lane2007-08-14
* Teach heapam code to know the difference between a real seqscan and theTom Lane2007-06-09
* Arrange for large sequential scans to synchronize with each other, so thatTom Lane2007-06-08
* Make large sequential scans and VACUUMs work in a limited-size "ring" ofTom Lane2007-05-30
* Fix up pgstats counting of live and dead tuples to recognize that committedTom Lane2007-05-27
* Make CLUSTER MVCC-safe. Heikki LinnakangasTom Lane2007-04-08
* Decouple the values of TOAST_TUPLE_THRESHOLD and TOAST_MAX_CHUNK_SIZE.Tom Lane2007-04-03
* Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane2007-03-29
* Clean up the representation of special snapshots by including a "methodTom Lane2007-03-25
* Combine cmin and cmax fields of HeapTupleHeaders into a single field, byTom Lane2007-02-09
* Rename MaxTupleSize to MaxHeapTupleSize to clarify that it's not meant toTom Lane2007-02-05
* Don't MAXALIGN in the checks to decide whether a tuple is over TOAST'sTom Lane2007-02-04
* Prevent WAL logging when COPY is done in the same transation thatBruce Momjian2007-01-25
* Enable another five tuple status bits by using the high bits of theBruce Momjian2007-01-09
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-05
* Repair two related errors in heap_lock_tuple: it was failing to recognizeTom Lane2006-11-17
* Fix recently-understood problems with handling of XID freezing, particularlyTom Lane2006-11-05
* pgindent run for 8.2.Bruce Momjian2006-10-04
* Now that we've rearranged relation open to get a lock before touchingTom Lane2006-08-18
* Change the relation_open protocol so that we obtain lock on a relationTom Lane2006-07-31