summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
2007-09-14Remove GIN interface section, which is now documented in SGML.Bruce Momjian
2007-09-12Redefine the lp_flags field of item pointers as having four states, ratherTom Lane
2007-09-11Rename recently-added pg_stat_activity column from txn_start to xact_start,Tom Lane
2007-09-08Replace the former method of determining snapshot xmax --- to wit, callingTom Lane
2007-09-07Don't take ProcArrayLock while exiting a transaction that has no XID; there isTom Lane
2007-09-07Improve page split in rtree emulation. Now if splitted result hasTeodor Sigaev
2007-09-05Quick hack to make the VXID of a prepared transaction be -1/XID,Tom Lane
2007-09-05Implement lazy XID allocation: transactions that do not modify any databaseTom Lane
2007-09-03Implement function-local GUC parameter settings, as per recent discussion.Tom Lane
2007-08-28Add a debug logging message when a resource manager rejects an attemptedTom Lane
2007-08-21Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane
2007-08-14Fix oversight in async-commit patch: there were some places in heapam.cTom Lane
2007-08-13Fix two bugs induced in VACUUM FULL by async-commit patch.Tom Lane
2007-08-04Switch over to using the src/timezone functions for formatting timestampsTom Lane
2007-08-01Support an optional asynchronous commit mode, in which we don't flush WALTom Lane
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-07Redefine IsTransactionState() to only return true for TRANS_INPROGRESS state,Tom Lane
2007-06-05Move call of MarkBufferDirty() before XLogInsert() as required.Teodor Sigaev
2007-06-04Fix bundle bugs of GIN:Teodor Sigaev
2007-06-03Clarify some error messages about duplicate things.Peter Eisentraut
2007-06-01Fix several hash functions that were taking chintzy shortcuts instead ofTom Lane
2007-05-31Make some messages more consistentPeter Eisentraut
2007-05-31Replace ReadBuffer to ReadBufferWithStrategy in all vacuum-involved placesTeodor Sigaev
2007-05-31Downgrade some low-level startup messages to DEBUG1.Peter Eisentraut
2007-05-30Fix overly-strict sanity check in BeginInternalSubTransaction that made itTom 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-16Have the rewriteheap code freeze old tuples. This is safe because it is onlyAlvaro Herrera
2007-05-03Tweak hash index AM to use the new ReadOrZeroBuffer bufmgr API when fetchingTom Lane
2007-05-02During WAL recovery, when reading a page that we intend to overwrite completelyTom 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-26Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane
2007-04-19Repair PANIC condition in hash indexes when a previous index extension attemptTom Lane
2007-04-17Fix condition for whether end_heap_rewrite must fsync, per Heikki.Tom Lane
2007-04-17Don't assume rd_smgr stays open across all of a rewriteheap operation;Tom 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-03Remove the CheckpointStartLock in favor of having backends show whether theyTom 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