summaryrefslogtreecommitdiff
path: root/src/backend/access/gist
Commit message (Expand)AuthorAgeFilesLines
* Add some randomness to the choice of which GiST page to insert to.Heikki Linnakangas2013-01-251-4/+62
* Make GiST indexes on-disk compatible with 9.2 again.Heikki Linnakangas2013-01-174-12/+11
* Update copyrights for 2013Bruce Momjian2013-01-0110-10/+10
* Remove obsolete XLogRecPtr macrosAlvaro Herrera2012-12-284-11/+11
* Split out rmgr rm_desc functions into their own filesAlvaro Herrera2012-11-281-49/+0
* Fix multiple problems in WAL replay.Tom Lane2012-11-121-90/+101
* Improve coding of gistchoose and gistRelocateBuildBuffersOnSplit.Tom Lane2012-08-302-87/+110
* Fix logic bug in gistchoose and gistRelocateBuildBuffersOnSplit.Robert Haas2012-08-302-8/+80
* Fix GiST buffering build bug, which caused "failed to re-find parent" errors.Heikki Linnakangas2012-08-162-13/+39
* Remove unreachable codePeter Eisentraut2012-07-161-2/+0
* Replace XLogRecPtr struct with a 64-bit integer.Heikki Linnakangas2012-06-242-10/+4
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-106-46/+48
* Change the way parent pages are tracked during buffered GiST build.Heikki Linnakangas2012-05-302-258/+311
* Delete the temporary file used in buffered GiST build, after the build.Heikki Linnakangas2012-05-302-1/+2
* Fix integer overflow bug in GiST buffering build calculations.Heikki Linnakangas2012-05-291-9/+23
* Fix bug in gistRelocateBuildBuffersOnSplit().Heikki Linnakangas2012-05-181-8/+12
* Fix obsolescent C declaration syntaxPeter Eisentraut2012-05-121-1/+1
* On GiST page split, release the locks on child pages before recursing up.Heikki Linnakangas2012-05-111-28/+92
* More duplicate word removal.Robert Haas2012-05-021-1/+1
* When a GiST page is split during index build, it might not have a buffer.Heikki Linnakangas2012-03-021-6/+2
* Add const qualifiers where they are accidentally cast awayPeter Eisentraut2012-02-281-6/+6
* Add some enumeration commas, for consistencyPeter Eisentraut2012-02-241-1/+1
* Throw error sooner for unlogged GiST indexes.Tom Lane2012-02-081-0/+10
* Assorted comment fixes, mostly just typos, but some obsolete statements.Tom Lane2012-01-295-13/+14
* Update copyright notices for year 2012.Bruce Momjian2012-01-0110-10/+10
* Use IEEE infinity, not 1e10, for null-and-not-null case in gistpenalty().Tom Lane2011-11-271-2/+5
* Clean up a couple of box gist helper functions.Heikki Linnakangas2011-10-091-18/+13
* Replace the "New Linear" GiST split algorithm for boxes and points with aHeikki Linnakangas2011-10-061-254/+557
* Support GiST index support functions that want to cache data across calls.Tom Lane2011-09-304-62/+163
* gistendscan() forgot to free so->giststate.Tom Lane2011-09-161-0/+1
* In the final emptying phase of the new GiST buffering build, set theHeikki Linnakangas2011-09-121-4/+8
* round() is not portable. Use rint().Tom Lane2011-09-081-1/+3
* Buffering GiST index build algorithm.Heikki Linnakangas2011-09-087-184/+2052
* Remove unnecessary #include references, per pgrminclude script.Bruce Momjian2011-09-015-14/+0
* Change the way the offset of downlink is stored in GISTInsertStack.Heikki Linnakangas2011-07-151-53/+39
* Fix two ancient bugs in GiST code to re-find a parent after page split:Heikki Linnakangas2011-07-151-9/+24
* Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera2011-07-042-0/+2
* Message style and spelling improvementsPeter Eisentraut2011-06-222-2/+2
* Pgindent run before 9.1 beta2.Bruce Momjian2011-06-092-3/+3
* Protect GIST logic that assumes penalty values can't be negative.Tom Lane2011-05-311-2/+9
* Spell checking and markup refinementPeter Eisentraut2011-05-193-4/+4
* Make GIN and GIST pass the index collation to all their support functions.Tom Lane2011-04-223-27/+54
* Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane2011-04-122-19/+15
* Clean up most -Wunused-but-set-variable warnings from gcc 4.6Peter Eisentraut2011-04-111-5/+0
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-106-101/+110
* Clean up cruft around collation initialization for tupdescs and scankeys.Tom Lane2011-03-261-2/+8
* 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-018-8/+8
* 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-237-1162/+980