summaryrefslogtreecommitdiff
path: root/src/backend/access/heap/heapam.c
Commit message (Expand)AuthorAgeFilesLines
* Add new function log_newpage_buffer.Robert Haas2012-06-141-4/+50
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-67/+65
* Fix more crash-safe visibility map bugs, and improve comments.Robert Haas2012-06-071-9/+9
* Only throw recovery conflicts when InHotStandby. Bug fix to recentSimon Riggs2012-05-311-1/+2
* Ensure that seqscans check for interrupts at least once per page.Tom Lane2012-05-221-0/+7
* Fix bug in freespace calculation in heap_multi_insert().Heikki Linnakangas2012-05-161-1/+1
* Avoid repeated CLOG access from heap_hot_search_buffer.Robert Haas2012-05-021-2/+1
* Prevent index-only scans from returning wrong answers under Hot Standby.Robert Haas2012-04-261-2/+16
* Lots of doc corrections.Robert Haas2012-04-231-1/+1
* Code cleanup for heap_freeze_tuple.Robert Haas2012-03-261-45/+4
* Fix heap_multi_insert to set t_self field in the caller's tuples.Heikki Linnakangas2012-02-131-0/+8
* fastgetattr is in access/htup.h, not access/heapam.hRobert Haas2012-01-161-1/+1
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Improve table locking behavior in the face of current DDL.Robert Haas2011-11-301-2/+2
* Take fillfactor into account in the new COPY bulk heap insert code.Heikki Linnakangas2011-11-261-1/+4
* Fix another bug in the redo of COPY batches.Heikki Linnakangas2011-11-101-1/+1
* Fix bugs in the COPY heap-insert batching patch.Heikki Linnakangas2011-11-091-3/+10
* In COPY, insert tuples to the heap in batches.Heikki Linnakangas2011-11-091-45/+439
* Make VACUUM avoid waiting for a cleanup lock, where possible.Robert Haas2011-11-071-0/+38
* heap_update() must recheck tuple after unlocking and relocking buffer.Robert Haas2011-09-271-1/+4
* Avoid unnecessary page-level SSI lock check in heap_insert().Tom Lane2011-09-161-7/+12
* Revise sinval code to remove no-longer-used tuple TID from inval messages.Tom Lane2011-08-161-15/+15
* Try to acquire relation locks in RangeVarGetRelid.Robert Haas2011-07-081-36/+6
* Move the PredicateLockRelation() call from nodeSeqscan.c to heapam.c. It'sHeikki Linnakangas2011-06-291-7/+14
* Allow callers to pass a missing_ok flag when opening a relation.Robert Haas2011-06-271-10/+14
* Try again to make the visibility map crash safe.Robert Haas2011-06-271-24/+21
* Avoid having two copies of the HOT-chain search logic.Robert Haas2011-06-271-26/+46
* Make the visibility map crash-safe.Robert Haas2011-06-211-25/+238
* Make non-MVCC snapshots exempt from predicate locking. Scans with non-MVCCHeikki Linnakangas2011-06-151-10/+13
* The row-version chaining in Serializable Snapshot Isolation was still wrong.Heikki Linnakangas2011-05-301-13/+2
* Fix SSI-related assertion failure.Robert Haas2011-04-251-1/+1
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-18/+18
* You must hold a lock on the heap page when you callHeikki Linnakangas2011-03-041-2/+2
* Implement genuine serializable isolation level.Heikki Linnakangas2011-02-081-13/+75
* Basic foreign table support.Robert Haas2011-01-011-1/+2
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Generalize concept of temporary relations to "relation persistence".Robert Haas2010-12-131-17/+17
* Self review of previous patch. Fix assumption that xmax >= xmin.Simon Riggs2010-12-091-4/+2
* Reduce spurious Hot Standby conflicts from never-visible records.Simon Riggs2010-12-091-8/+25
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* SERIALIZABLE transactions are actually implemented beneath the covers withJoe Conway2010-09-111-3/+3
* Fix possible page corruption by ALTER TABLE .. SET TABLESPACE.Robert Haas2010-07-291-5/+20
* pgindent run for 9.0, second runBruce Momjian2010-07-061-5/+5
* Improve printing of XLOG_HEAP_NEWPAGE records to include the forknum.Tom Lane2010-05-021-3/+4
* Fix replay of XLOG_HEAP_NEWPAGE WAL records to pay attention to the forknumTom Lane2010-05-021-2/+4
* Further reductions in Hot Standby conflict processing. TheseSimon Riggs2010-04-221-3/+7
* pgindent run for 9.0Bruce Momjian2010-02-261-14/+14
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-141-4/+2
* Remove old-style VACUUM FULL (which was known for a little while asTom Lane2010-02-081-143/+44
* Move the responsibility of writing a "unlogged WAL operation" record fromHeikki Linnakangas2010-02-031-7/+1