summaryrefslogtreecommitdiff
path: root/src/backend/access/gist/gist.c
Commit message (Expand)AuthorAgeFilesLines
...
* Make GIN and GIST pass the index collation to all their support functions.Tom Lane2011-04-221-0/+17
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-74/+78
* Fix crash in the new GiST insertion code, when an update splits the root page.Heikki Linnakangas2011-01-091-12/+18
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Support unlogged tables.Robert Haas2010-12-291-0/+13
* Rewrite the GiST insertion logic so that we don't need the post-recoveryHeikki Linnakangas2010-12-231-356/+653
* Generalize concept of temporary relations to "relation persistence".Robert Haas2010-12-131-6/+6
* KNNGIST, otherwise known as order-by-operator support for GIST.Tom Lane2010-12-031-0/+10
* The GiST scan algorithm uses LSNs to detect concurrent pages splits, butHeikki Linnakangas2010-11-161-6/+4
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Support deferrable uniqueness constraints.Tom Lane2009-07-291-3/+3
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Rethink the way FSM truncation works. Instead of WAL-logging FSMHeikki Linnakangas2008-11-191-4/+1
* Prevent synchronous scan during GIN index build, because GIN is optimizedTom Lane2008-11-131-2/+2
* Clean up the messy semantics (not to mention inefficiency) of PageGetTempPageTom Lane2008-11-031-2/+2
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-301-1/+5
* Refactor XLogOpenRelation() and XLogReadBuffer() in preparation for relationHeikki Linnakangas2008-06-121-3/+3
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-121-1/+2
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* pgindent run for 8.3.Bruce Momjian2007-11-151-3/+3
* HOT updates. When we update a tuple without changing any of its indexedTom Lane2007-09-201-2/+2
* Redefine the lp_flags field of item pointers as having four states, ratherTom Lane2007-09-121-2/+2
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Fix some typos in comments.Neil Conway2006-11-121-6/+6
* pgindent run for 8.2.Bruce Momjian2006-10-041-70/+81
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-4/+1
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-031-9/+11
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-5/+12
* ChangesTeodor Sigaev2006-06-281-162/+20
* Som improve page split in multicolumn GiST index.Teodor Sigaev2006-05-291-2/+8
* * Add support NULL to GiST.Teodor Sigaev2006-05-241-108/+148
* Simplify gistSplit() and some refactoring related code.Teodor Sigaev2006-05-191-103/+42
* Reduce size of critial section during vacuum full, criticalTeodor Sigaev2006-05-171-4/+4
* Clean up code associated with updating pg_class statistics columnsTom Lane2006-05-101-5/+11
* Reduce size of critical section and remove call of user-defined functions inTeodor Sigaev2006-05-101-218/+175
* Eliminate ajust scan code. Since concurrent GiST it doesn'tTeodor Sigaev2006-04-031-6/+1
* Clean up WAL/buffer interactions as per my recent proposal. Get rid of theTom Lane2006-03-311-41/+37
* Improve gist XLOG code to follow the coding rules needed to preventTom Lane2006-03-301-52/+53
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Add simple sanity checks on newly-read pages to GiST, too.Tom Lane2005-11-061-12/+18
* A few trivial code cleanups motivated by reading warnings generatedTom Lane2005-10-181-4/+2
* pgindent new GIST index code, per request from Tom.Bruce Momjian2005-09-221-352/+468
* Bug fixes for GiST crash recovery.Teodor Sigaev2005-06-301-13/+12
* Cleanup, remove unneeded pallocsTeodor Sigaev2005-06-291-1/+2
* Code cleanup. gistfillbuffer accepts InvalidOffsetNumber.Teodor Sigaev2005-06-281-10/+5
* Concurrency for GiSTTeodor Sigaev2005-06-271-99/+384
* fix founded hole in recovery after crash, add vacuum_delay_point()Teodor Sigaev2005-06-201-36/+20
* 1. full functional WAL for GiSTTeodor Sigaev2005-06-201-411/+164
* WAL for GiST. It work for online backup and so on, but onTeodor Sigaev2005-06-141-1073/+457