summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
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
2007-03-30Fix oversight in coding of _bt_start_vacuum: we can't assume that the LWLockTom Lane
2007-03-29Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane
2007-03-25Clean up the representation of special snapshots by including a "methodTom Lane
2007-03-22Arrange for PreventTransactionChain to reject commands submitted as partTom Lane
2007-03-13Reverted waiting for further fixes:Peter Eisentraut
2007-03-13First phase of plan-invalidation project: create a plan cache managementTom Lane
2007-03-12Make configuration parameters fall back to their default values when theyPeter Eisentraut
2007-03-05Fix a typo in a comment. Heikki Linnakangas.Neil Conway
2007-03-03Split _bt_insertonpg to two functions.Bruce Momjian
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