summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
2012-02-06Add locking around WAL-replay modification of shared-memory variables.Tom Lane
2012-02-05Fix transient clobbering of shared buffers during WAL replay.Tom Lane
2012-02-05Improve comment.Tom Lane
2012-02-02Avoid re-checking for visibility map extension too frequently.Robert Haas
2012-01-30Make group commit more effective.Heikki Linnakangas
2012-01-30Assorted comment fixes, mostly just typos, but some obsolete statements.Tom Lane
2012-01-25Allow pg_basebackup from standby node with safety checking.Simon Riggs
2012-01-17fastgetattr is in access/htup.h, not access/heapam.hRobert Haas
2012-01-13Correctly initialise shared recoveryLastRecPtr in recovery.Simon Riggs
2012-01-12Fix CLUSTER/VACUUM FULL for toast values owned by recently-updated rows.Tom Lane
2012-01-11Remove useless 'needlock' argument from GetXLogInsertRecPtr. It was alwaysHeikki Linnakangas
2012-01-11Refactor XLogInsert a bit. The rdata entries for backup blocks are nowHeikki Linnakangas
2012-01-06Make the number of CLOG buffers adaptive, based on shared_buffers.Robert Haas
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-12-31Send new protocol keepalive messages to standby servers.Simon Riggs
2011-12-25Rethink representation of index clauses' mapping to index columns.Tom Lane
2011-12-22Add a security_barrier option for views.Robert Haas
2011-12-20Avoid crashing when we have problems unlinking files post-commit.Tom Lane
2011-12-19Add support for privileges on typesPeter Eisentraut
2011-12-19Rename updateNodeLink to spgUpdateNodeLink.Tom Lane
2011-12-19Teach SP-GiST to do index-only scans.Tom Lane
2011-12-18Replace simple constant pg_am.amcanreturn with an AM support function.Tom Lane
2011-12-18Defend against null scankeys in spgist searches.Tom Lane
2011-12-17Fix some long-obsolete references to XLogOpenRelation.Tom Lane
2011-12-17Fix compiler warning seen on 64-bit machine.Tom Lane
2011-12-17Add SP-GiST (space-partitioned GiST) index access method.Tom Lane
2011-12-12Move BKP_REMOVABLE bit from individual WAL records to WAL page headers.Tom Lane
2011-12-09Don't set reachedMinRecoveryPoint during crash recovery. In crash recovery,Heikki Linnakangas
2011-12-07Create a "sort support" interface API for faster sorting.Tom Lane
2011-12-02During recovery, if we reach consistent state and still have entries in theHeikki Linnakangas
2011-11-30Improve table locking behavior in the face of current DDL.Robert Haas
2011-11-27Use IEEE infinity, not 1e10, for null-and-not-null case in gistpenalty().Tom Lane
2011-11-26Take fillfactor into account in the new COPY bulk heap insert code.Heikki Linnakangas
2011-11-25Fix erroneous replay of GIN_UPDATE_META_PAGE WAL records.Tom Lane
2011-11-25Move "hot" members of PGPROC into a separate PGXACT array.Robert Haas
2011-11-22Continue to allow VACUUM to mark last block of index dirtySimon Riggs
2011-11-18Avoid marking buffer dirty when VACUUM has no work to do.Simon Riggs
2011-11-13Wakeup WALWriter as needed for asynchronous commit performance.Simon Riggs
2011-11-10Fix another bug in the redo of COPY batches.Heikki Linnakangas
2011-11-09Fix bugs in the COPY heap-insert batching patch.Heikki Linnakangas
2011-11-09In COPY, insert tuples to the heap in batches.Heikki Linnakangas
2011-11-08Make VACUUM avoid waiting for a cleanup lock, where possible.Robert Haas
2011-11-05Don't assume that a tuple's header size is unchanged during toasting.Tom Lane
2011-11-04Move user functions related to WAL into xlogfuncs.cSimon Riggs
2011-11-02Avoid scanning nulls at the beginning of a btree index scan.Tom Lane
2011-11-02Fix btree stop-at-nulls logic properly.Tom Lane
2011-11-02Update more comments about checkpoints being done by bgwriterSimon Riggs
2011-11-02Reduce checkpoints and WAL traffic on low activity database serverSimon Riggs
2011-11-02Refactor xlog.c to create src/backend/postmaster/startup.cSimon Riggs
2011-11-02Derive oldestActiveXid at correct time for Hot Standby.Simon Riggs