summaryrefslogtreecommitdiff
path: root/doc/src/sgml/indexam.sgml
AgeCommit message (Expand)Author
2016-08-16Doc: remove out-of-date claim that pg_am rows must be inserted by hand.Tom Lane
2016-08-13Add SQL-accessible functions for inspecting index AM properties.Tom Lane
2016-05-08Docs: create some user-facing documentation about index-only scans.Tom Lane
2016-04-18Fix typo in docs.Fujii Masao
2016-04-08Revert CREATE INDEX ... INCLUDING ...Teodor Sigaev
2016-04-08CREATE INDEX ... INCLUDING (column[, ...])Teodor Sigaev
2016-03-24Support CREATE ACCESS METHODAlvaro Herrera
2016-01-18Restructure index access method API to hide most of it at the C level.Tom Lane
2015-03-26Add support for index-only scans in GiST.Heikki Linnakangas
2014-07-17doc: Spell checkingPeter Eisentraut
2013-07-02Use an MVCC snapshot, rather than SnapshotNow, for catalog scans.Robert Haas
2013-05-21Documentation spell checking and markup improvementsPeter Eisentraut
2013-04-19Standardize spelling of "nonblocking"Peter Eisentraut
2012-06-07Documentation spell and markup checkingPeter Eisentraut
2012-01-28Use parameterized paths to generate inner indexscans more flexibly.Tom Lane
2011-12-25Rethink representation of index clauses' mapping to index columns.Tom Lane
2011-12-18Replace simple constant pg_am.amcanreturn with an AM support function.Tom Lane
2011-10-16Avoid assuming that index-only scan data matches the index's rowtype.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-06-29Unify spelling of "canceled", "canceling", "cancellation"Peter Eisentraut
2011-02-07Implement genuine serializable isolation level.Heikki Linnakangas
2011-01-08Remove pg_am.amindexnulls.Tom Lane
2010-12-29Support unlogged tables.Robert Haas
2010-12-04Add external documentation for KNNGIST.Tom Lane
2010-12-03Create core infrastructure for KNNGIST.Tom Lane
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-08-17Spell and markup checkingPeter Eisentraut
2010-07-29Fix indentation of verbatim block elementsPeter Eisentraut
2010-02-08Remove old-style VACUUM FULL (which was known for a little while asTom Lane
2010-01-01Support "x IS NOT NULL" clauses as indexscan conditions. This turns outTom Lane
2009-07-29Support deferrable uniqueness constraints.Tom Lane
2009-03-24Implement "fastupdate" support for GIN indexes, in which we try to accumulateTom Lane
2009-03-05Teach the planner to support index access methods that only implementTom Lane
2008-10-17Add a new column to pg_am to specify whether an index AM supports backwardTom Lane
2008-08-14Implement SEMI and ANTI joins in the planner and executor. (Semijoins replaceTom Lane
2008-04-14Push index operator lossiness determination down to GIST/GIN opclassTom Lane
2008-04-13Phase 2 of project to make index operator lossiness be determined at runtimeTom Lane
2008-04-10Replace "amgetmulti" AM functions with "amgetbitmap", in which the wholeTom Lane
2007-04-06Make 'col IS NULL' clauses be indexable conditions.Tom Lane
2007-02-22Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane
2007-01-31Update documentation on may/can/might:Bruce Momjian
2007-01-20Simplify pg_am representation of ordering-capable access methods:Tom Lane
2006-12-23Restructure operator classes to allow improved handling of cross-data-typeTom Lane
2006-09-16Remove emacs info from footer of SGML files.Bruce Momjian
2006-08-25Add the ability to create indexes 'concurrently', that is, withoutTom Lane
2006-07-31Change the relation_open protocol so that we obtain lock on a relationTom Lane
2006-07-03Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane
2006-06-06Make the planner estimate costs for nestloop inner indexscans on the basisTom Lane
2006-06-05Add a GUC parameter seq_page_cost, and use that everywhere we formerlyTom Lane