summaryrefslogtreecommitdiff
path: root/src/include/access
AgeCommit message (Expand)Author
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera
2008-03-26Separate snapshot management code from tuple visibility code, create aAlvaro Herrera
2008-03-16When creating a large hash index, pre-sort the index entries by estimatedTom Lane
2008-03-15Change hash index creation so that rather than always establishing exactlyTom Lane
2008-03-11Make TransactionIdIsInProgress check transam.c's single-item XID status cacheTom Lane
2008-03-08Refactor heap_page_prune so that instead of changing item states on-the-fly,Tom Lane
2008-03-04Fix PREPARE TRANSACTION to reject the case where the transaction has dropped aTom Lane
2008-02-17Replace time_t with pg_time_t (same values, but always int64) in on-diskTom Lane
2008-01-14Fix CREATE INDEX CONCURRENTLY so that it won't use synchronized scan forTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-12-01Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane
2007-11-30Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane
2007-11-16GIN index build's allocatedMemory counter needs to be long, not uint32.Tom Lane
2007-11-16Repair still another bug in the btree page split WAL reduction patch:Tom Lane
2007-11-15Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-11-07Use "alternative" instead of "alternate" where it is clearer.Peter Eisentraut
2007-11-05Add a note about another issue that needs to be considered beforeTom Lane
2007-09-26Minor improvements in backup and recovery:Tom Lane
2007-09-20HOT updates. When we update a tuple without changing any of its indexedTom Lane
2007-09-08Replace the former method of determining snapshot xmax --- to wit, callingTom Lane
2007-09-05Implement lazy XID allocation: transactions that do not modify any databaseTom Lane
2007-08-21Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane
2007-08-01Support an optional asynchronous commit mode, in which we don't flush WALTom Lane
2007-07-25Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict withMagnus Hagander
2007-07-24Create a new dedicated Postgres process, "wal writer", which exists to writeTom Lane
2007-06-30Improve logging of checkpoints. Patch by Greg Smith, worked overTom Lane
2007-06-28Implement "distributed" checkpoints in which the checkpoint I/O is spreadTom Lane
2007-06-09Teach heapam code to know the difference between a real seqscan and theTom Lane
2007-06-08Arrange for large sequential scans to synchronize with each other, so thatTom Lane
2007-06-01Fix several hash functions that were taking chintzy shortcuts instead ofTom Lane
2007-05-30Make large sequential scans and VACUUMs work in a limited-size "ring" ofTom Lane
2007-05-27Fix up pgstats counting of live and dead tuples to recognize that committedTom Lane
2007-05-20To support external compression of archived WAL data, add a flag bit toTom Lane
2007-05-17Move the tuple freezing point in CLUSTER to a point further back in the past,Alvaro Herrera
2007-05-03Tweak hash index AM to use the new ReadOrZeroBuffer bufmgr API when fetchingTom Lane
2007-04-30Change the timestamps recorded in transaction commit/abort xlog recordsTom Lane
2007-04-30Implement rate-limiting logic on how often backends will attempt to sendTom Lane
2007-04-19Repair PANIC condition in hash indexes when a previous index extension attemptTom Lane
2007-04-11Code review for btree page split WAL reduction patch. Make it actually workTom Lane
2007-04-09Minor tweaking of index special-space definitions so that the variousTom Lane
2007-04-08Make CLUSTER MVCC-safe. Heikki LinnakangasTom Lane
2007-04-06Make 'col IS NULL' clauses be indexable conditions.Tom Lane
2007-04-06Support varlena fields with single-byte headers and unaligned storage.Tom Lane
2007-04-03Decouple the values of TOAST_TUPLE_THRESHOLD and TOAST_MAX_CHUNK_SIZE.Tom Lane
2007-04-02Support enum data types. Along the way, use macros for the values ofTom Lane
2007-03-29Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane
2007-03-13First phase of plan-invalidation project: create a plan cache managementTom Lane
2007-03-03Remove undo information from pg_controldata --- never used.Bruce Momjian
2007-02-27Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane