summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
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
2007-02-21btree source code cleanups:Bruce Momjian
2007-02-15Restructure autovacuum in two processes: a dummy process, which runsAlvaro Herrera
2007-02-14Move fsync method macro defines into /include/access/xlogdefs.h so theyBruce Momjian
2007-02-13Disallow committing a prepared transaction unless we are in the same databaseTom Lane
2007-02-09Replace useless uses of := by = in makefiles.Peter Eisentraut
2007-02-09Combine cmin and cmax fields of HeapTupleHeaders into a single field, byTom Lane
2007-02-08Fix reference-after-free in the new btree page split code, as reported byAlvaro Herrera
2007-02-08Normalize fgets() calls to use sizeof() for calculating the buffer sizePeter Eisentraut
2007-02-08Reduce WAL activity for page splits:Bruce Momjian
2007-02-07Add a function pg_stat_clear_snapshot() that discards any statistics snapshotTom Lane
2007-02-07Remove the xlog-centric "database system is ready" message and replace it withTom Lane
2007-02-06Remove some dead code, per Heikki.Tom Lane
2007-02-05Rename MaxTupleSize to MaxHeapTupleSize to clarify that it's not meant toTom Lane
2007-02-04Don't MAXALIGN in the checks to decide whether a tuple is over TOAST'sTom Lane
2007-02-01Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian
2007-02-01Fix a few typos in comments in GiN.Neil Conway
2007-01-31Allow GIN's extractQuery method to signal that nothing can satisfy the query.Teodor Sigaev
2007-01-30Add support for cross-type hashing in hash index searches and hash joins.Tom Lane
2007-01-29Add comment noting that hashm_procid in a hash index's metapage isn'tTom Lane