summaryrefslogtreecommitdiff
path: root/src/include/access
AgeCommit message (Expand)Author
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-24Add new replication mode synchronous_commit = 'write'.Simon Riggs
2012-01-11Remove useless 'needlock' argument from GetXLogInsertRecPtr. It was alwaysHeikki 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-22Add a security_barrier option for views.Robert Haas
2011-12-19Rename updateNodeLink to spgUpdateNodeLink.Tom Lane
2011-12-19Allow CHECK constraints to be declared ONLYAlvaro Herrera
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-17Add SP-GiST (space-partitioned GiST) index access method.Tom Lane
2011-12-17Various micro-optimizations for GetSnapshopData().Robert Haas
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-13Wakeup WALWriter as needed for asynchronous commit performance.Simon Riggs
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-04Move user functions related to WAL into xlogfuncs.cSimon Riggs
2011-11-02Refactor xlog.c to create src/backend/postmaster/startup.cSimon Riggs
2011-11-02Fix timing of Startup CLOG and MultiXact during Hot StandbySimon Riggs
2011-11-01Fix race condition with toast table access from a stale syscache entry.Tom Lane
2011-11-01Split work of bgwriter between 2 processes: bgwriter and checkpointer.Simon Riggs
2011-10-18Remove unnecessary AssertMacro() to suppress gcc 4.6 compiler warning.Tom Lane
2011-10-16Avoid assuming that index-only scan data matches the index's rowtype.Tom Lane
2011-10-16Teach btree to handle ScalarArrayOpExpr quals natively.Tom Lane
2011-10-14Measure the number of all-visible pages for use in index-only scan costing.Tom Lane
2011-10-12Modify RelationGetBufferForTuple() to use a typedef, rather than aBruce Momjian
2011-10-09Improve index-only scans to avoid repeated access to the index page.Tom Lane
2011-10-08Support index-only scans using the visibility map to avoid heap fetches.Tom Lane
2011-10-04Use callbacks in SlruScanDirectory for the actual actionAlvaro Herrera
2011-09-30Support GiST index support functions that want to cache data across calls.Tom Lane
2011-09-09Move Timestamp/Interval typedefs and basic macros into datatype/timestamp.h.Tom Lane
2011-09-08Buffering GiST index build algorithm.Heikki Linnakangas
2011-09-04Clean up the #include mess a little.Tom Lane
2011-09-04Move AllowCascadeReplication() define from xlog.h to replication includeBruce Momjian
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-08-27Allow more include files to be compiled in their own by adding missingBruce Momjian
2011-08-09Change the way string relopts are allocated.Heikki Linnakangas
2011-07-19Cascading replication feature for streaming log-based replication.Simon Riggs
2011-07-15Change the way the offset of downlink is stored in GISTInsertStack.Heikki Linnakangas
2011-06-30Enable CHECK constraints to be declared NOT VALIDAlvaro Herrera
2011-06-29Move the PredicateLockRelation() call from nodeSeqscan.c to heapam.c. It'sHeikki Linnakangas
2011-06-28Introduce compact WAL record for the common case of commit (non-DDL).Simon Riggs
2011-06-27Allow callers to pass a missing_ok flag when opening a relation.Robert Haas
2011-06-27Try again to make the visibility map crash safe.Robert Haas
2011-06-27Avoid having two copies of the HOT-chain search logic.Robert Haas