summaryrefslogtreecommitdiff
path: root/src/backend/access/index/indexam.c
AgeCommit message (Expand)Author
2017-06-21Phase 3 of pgindent updates.Tom Lane
2017-06-21Phase 2 of pgindent updates.Tom Lane
2017-02-27Allow index AMs to return either HeapTuple or IndexTuple format during IOS.Tom Lane
2017-02-09Allow index AMs to cache data across aminsert calls within a SQL command.Tom Lane
2017-01-24Extend index AM API for parallel index scans.Robert Haas
2017-01-03Update copyright via script for 2017Bruce Momjian
2016-01-18Restructure index access method API to hide most of it at the C level.Tom Lane
2016-01-02Update copyright for 2016Bruce Momjian
2015-03-26Add support for index-only scans in GiST.Heikki Linnakangas
2015-01-06Update copyright for 2015Bruce Momjian
2014-05-06pgindent run for 9.4Bruce Momjian
2014-03-03Introduce logical decoding.Robert Haas
2014-01-07Update copyright for 2014Bruce Momjian
2013-04-16Remove some unused and seldom used fields from RelationAmInfo.Heikki Linnakangas
2013-01-01Update copyrights for 2013Bruce Momjian
2012-06-10Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-12-18Replace simple constant pg_am.amcanreturn with an AM support function.Tom Lane
2011-10-09Improve index-only scans to avoid repeated access to the index page.Tom Lane
2011-10-08Support index-only scans using the visibility map to avoid heap fetches.Tom Lane
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-06-27Avoid having two copies of the HOT-chain search logic.Robert Haas
2011-06-15Make non-MVCC snapshots exempt from predicate locking. Scans with non-MVCCHeikki Linnakangas
2011-06-09Pgindent run before 9.1 beta2.Bruce Momjian
2011-05-30The row-version chaining in Serializable Snapshot Isolation was still wrong.Heikki Linnakangas
2011-04-16Add an Assert that indexam.c isn't used on an index awaiting reindexing.Tom Lane
2011-04-12Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-03-20Revise collation derivation method and expression-tree representation.Tom Lane
2011-03-06Fix incorrect access to pg_index.indcollation.Tom Lane
2011-02-08Per-column collation supportPeter Eisentraut
2011-02-07Implement genuine serializable isolation level.Heikki Linnakangas
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-12-03Create core infrastructure for KNNGIST.Tom Lane
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-02-26pgindent run for 9.0Bruce Momjian
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-12-19Allow read only connections during recovery, known as Hot Standby.Simon Riggs
2009-07-29Support deferrable uniqueness constraints.Tom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-03-24Implement "fastupdate" support for GIN indexes, in which we try to accumulateTom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-10-10Fix small query-lifespan memory leak introduced by 8.4 change in index AM APITom Lane
2008-09-11Initialize the minimum frozen Xid in vac_update_datfrozenxid usingAlvaro Herrera
2008-06-19Improve our #include situation by moving pointer types away from theAlvaro Herrera
2008-05-12Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera
2008-04-13Phase 2 of project to make index operator lossiness be determined at runtimeTom Lane
2008-04-12Create new routines systable_beginscan_ordered, systable_getnext_ordered,Tom Lane
2008-04-10Replace "amgetmulti" AM functions with "amgetbitmap", in which the wholeTom Lane
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera