summaryrefslogtreecommitdiff
path: root/src/include/access
AgeCommit message (Expand)Author
2009-11-23Fix an old bug in multixact and two-phase commit. Prepared transactions canHeikki Linnakangas
2008-10-22Fix GiST's killing tuple: GISTScanOpaque->curpos wasn'tTeodor Sigaev
2008-08-23Fix possible duplicate tuples while GiST scan. Now page is processedTeodor Sigaev
2008-04-05Defend against JOINs having more than 32K columns altogether. We cannotTom Lane
2007-06-01Fix performance problems in multi-batch hash joins by ensuring that we selectTom Lane
2007-04-19Repair PANIC condition in hash indexes when a previous index extension attemptTom Lane
2006-11-17Repair two related errors in heap_lock_tuple: it was failing to recognizeTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-20Modify tuptoaster's API so that it does not try to modify the passedTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-07Remove an unused typedef.Alvaro Herrera
2005-09-02Clean up a couple of ad-hoc computations of the maximum number of tuplesTom Lane
2005-08-20Convert the arithmetic for shared memory size calculation from 'int'Tom Lane
2005-08-20Make GetMultiXactIdMembers() a public function.Tatsuo Ishii
2005-08-20Repair problems with VACUUM destroying t_ctid chains too soon, and withTom Lane
2005-08-12Solve the problem of OID collisions by probing for duplicate OIDsTom Lane
2005-08-01Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane
2005-07-29Clean up a number of autovacuum loose ends. Make the stats collectorTom Lane
2005-07-06Add pg_column_size() to return storage size of a column, includingBruce Momjian
2005-07-04Arrange for the postmaster (and standalone backends, initdb, etc) toTom Lane
2005-06-30Bug fixes for GiST crash recovery.Teodor Sigaev
2005-06-29Clean up the rather historically encumbered interface to now() andTom Lane
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane
2005-06-27Concurrency for GiSTTeodor Sigaev
2005-06-24Extend r-tree operator classes to handle Y-direction tests equivalentTom Lane
2005-06-24Fix rtree and contrib/rtree_gist search behavior for the 1-D box andTom Lane
2005-06-20Avoid WAL-logging individual tuple insertions during CREATE TABLE ASTom Lane
2005-06-20fix founded hole in recovery after crash, add vacuum_delay_point()Teodor Sigaev
2005-06-201. full functional WAL for GiSTTeodor Sigaev
2005-06-19Arrange to fsync two-phase-commit state files only during checkpoints;Tom Lane
2005-06-18Add a time-of-preparation column to the pg_prepared_xacts view, per anTom Lane
2005-06-17Two-phase commit. Original patch by Heikki Linnakangas, with additionalTom Lane
2005-06-14WAL for GiST. It work for online backup and so on, but onTeodor Sigaev
2005-06-13Change the planner to allow indexscan qualification clauses to useTom Lane
2005-06-08Change WAL-logging scheme for multixacts to be more like regularTom Lane
2005-06-06Modify XLogInsert API to make callers specify whether pages to be backedTom Lane
2005-06-06Remove the mostly-stubbed-out-anyway support routines for WAL UNDO.Tom Lane
2005-06-02Change CRCs in WAL records from 64bit to 32bit for performance reasons.Tom Lane
2005-05-27Arrange to cache fmgr lookup information for an index's access methodTom Lane
2005-05-25Add parentheses to macros when args are used in computations. WithoutBruce Momjian
2005-05-20Add support for wal_fsync_writethrough for Darwin, and restructure theBruce Momjian
2005-05-17Cleanup GiST header files. Since GiST extensions are often written asNeil Conway
2005-05-17GiST improvements:Neil Conway
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
2005-05-03Clean up MultiXactIdExpand's API by separating out the case where weTom Lane
2005-04-28Implement sharable row-level locks, and use them for foreign key referencesTom Lane
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-13Simplify initdb-time assignment of OIDs as I proposed yesterday, andTom Lane
2005-03-28Remove dead push/pop rollback code. Vadim once planned to implementTom Lane
2005-03-27First steps towards index scans with heap access decoupled from indexTom Lane