summaryrefslogtreecommitdiff
path: root/src/backend/access
Commit message (Expand)AuthorAgeFilesLines
* Fix CLUSTER/VACUUM FULL for toast values owned by recently-updated rows.Tom Lane2012-01-121-14/+53
* Avoid crashing when we have problems unlinking files post-commit.Tom Lane2011-12-202-12/+5
* Don't set reachedMinRecoveryPoint during crash recovery. In crash recovery,Heikki Linnakangas2011-12-091-4/+17
* Fix erroneous replay of GIN_UPDATE_META_PAGE WAL records.Tom Lane2011-11-251-0/+2
* Don't assume that a tuple's header size is unchanged during toasting.Tom Lane2011-11-041-29/+46
* Revert "Stop btree indexscans upon reaching nulls in either direction."Tom Lane2011-11-021-42/+65
* Derive oldestActiveXid at correct time for Hot Standby.Simon Riggs2011-11-021-3/+11
* Fix timing of Startup CLOG and MultiXact during Hot StandbySimon Riggs2011-11-023-6/+32
* Fix race condition with toast table access from a stale syscache entry.Tom Lane2011-11-011-0/+81
* Stop btree indexscans upon reaching nulls in either direction.Tom Lane2011-10-311-65/+42
* Avoid unnecessary page-level SSI lock check in heap_insert().Tom Lane2011-09-161-7/+12
* gistendscan() forgot to free so->giststate.Tom Lane2011-09-161-0/+1
* Adjust translator comment format to xgettext expectationsAlvaro Herrera2011-09-051-4/+3
* Mark some untranslatable messages with errmsg_internalAlvaro Herrera2011-09-051-25/+31
* If backup-end record is not seen, and we reach end of recovery from aHeikki Linnakangas2011-08-171-22/+39
* Preserve toast value OIDs in toast-swap-by-content for CLUSTER/VACUUM FULL.Tom Lane2011-08-161-9/+113
* Fix race condition in relcache init file invalidation.Tom Lane2011-08-161-2/+2
* Back-patch assorted latch-related fixes.Tom Lane2011-08-101-0/+16
* Measure WaitLatch's timeout parameter in milliseconds, not microseconds.Tom Lane2011-08-091-1/+1
* Fix two ancient bugs in GiST code to re-find a parent after page split:Heikki Linnakangas2011-07-151-9/+24
* Unify spelling of "canceled", "canceling", "cancellation"Peter Eisentraut2011-07-021-6/+6
* Restore correct btree preprocessing of "indexedcol IS NULL" conditions.Tom Lane2011-06-291-2/+15
* Move the PredicateLockRelation() call from nodeSeqscan.c to heapam.c. It'sHeikki Linnakangas2011-06-291-7/+14
* Reduce impact of btree page reuse on Hot Standby by fixing off-by-1 error.Simon Riggs2011-06-271-1/+11
* Message style and spelling improvementsPeter Eisentraut2011-06-222-2/+2
* pgindent run of recent SSI changes. Also, remove an unnecessary #include.Heikki Linnakangas2011-06-163-5/+4
* Respect Hot Standby controls while recycling btree index pages.Simon Riggs2011-06-161-2/+10
* Make non-MVCC snapshots exempt from predicate locking. Scans with non-MVCCHeikki Linnakangas2011-06-153-34/+37
* Oops, forgot to change the order of entries in 2PC callback arrays when IHeikki Linnakangas2011-06-141-8/+8
* Work around gcc 4.6.0 bug that breaks WAL replay.Tom Lane2011-06-101-13/+24
* Pgindent run before 9.1 beta2.Bruce Momjian2011-06-099-27/+27
* Protect GIST logic that assumes penalty values can't be negative.Tom Lane2011-05-311-2/+9
* The row-version chaining in Serializable Snapshot Isolation was still wrong.Heikki Linnakangas2011-05-302-15/+3
* Spell checking and markup refinementPeter Eisentraut2011-05-193-4/+4
* Fix assorted typosAlvaro Herrera2011-05-121-2/+2
* Shut down WAL receiver if it's still running at end of recovery. We used toHeikki Linnakangas2011-05-111-5/+4
* Move RegisterPredicateLockingXid() call to a safer place.Tom Lane2011-05-062-5/+7
* Fix SSI-related assertion failure.Robert Haas2011-04-251-1/+1
* Hash indexes had better pass the index collation to support functions, too.Tom Lane2011-04-231-2/+6
* Make GIN and GIST pass the index collation to all their support functions.Tom Lane2011-04-226-48/+77
* Make a code-cleanup pass over the collations patch.Tom Lane2011-04-221-1/+5
* recoveryStopsHere() must check the resource manager ID.Robert Haas2011-04-181-3/+3
* Add an Assert that indexam.c isn't used on an index awaiting reindexing.Tom Lane2011-04-161-1/+11
* Revert the patch to check if we've reached end-of-backup also when doingHeikki Linnakangas2011-04-131-10/+26
* Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane2011-04-1212-94/+103
* Clean up most -Wunused-but-set-variable warnings from gcc 4.6Peter Eisentraut2011-04-112-7/+1
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-1034-432/+455
* Tweak collation setup for GIN index comparison functions.Tom Lane2011-04-081-3/+23
* Revise the API for GUC variable assign hooks.Tom Lane2011-04-071-33/+63
* Avoid assuming there will be only 3 states for synchronous_commit.Simon Riggs2011-04-041-1/+1