summaryrefslogtreecommitdiff
path: root/contrib/btree_gist/data
Commit message (Collapse)AuthorAgeFilesLines
* Add btree_gist support for enum types.Andrew Dunstan2017-03-211-0/+595
| | | | | | | | | | | This will allow enums to be used in exclusion constraints. The code uses the new CallerFInfoFunctionCall infrastructure in fmgr, and the support for it added to btree_gist in commit 393bb504d7. Reviewed by Tom Lane and Anastasia Lubennikova Discussion: http://postgr.es/m/56EA8A71.8060107@dunslane.net
* Add uuid to the set of types supported by contrib/btree_gist.Tom Lane2016-11-291-0/+703
| | | | | | | | Paul Jungwirth, reviewed and hacked on by Teodor Sigaev, Ildus Kurbangaliev, Adam Brusselback, Chris Bandy, and myself. Discussion: https://postgr.es/m/CA+renyUEE29=X01JXdz8_TQvo6n9=2XoEBBRnQ8rkLyr+kjPxQ@mail.gmail.com Discussion: https://postgr.es/m/55F6EE82.8080209@sigaev.ru
* Add missing newlines at end of filesPeter Eisentraut2010-10-266-6/+6
|
* Fixes from Janko Richter <jankorichter@yahoo.de>Teodor Sigaev2005-07-013-0/+508
| | | | | | | | - Fix wrong index results on text, char, varchar for multibyte strings - Fix some SIGFPE signals - Add support for infinite timestamps - Because of locale settings, btree_gist can not be a prefix index anymore (for text). Each node holds now just the lower and upper boundary.
* New version. Add support for int2, int8, float4, float8, timestamp ↵Teodor Sigaev2004-05-2821-2000/+10308
| | | | with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
* New contrib module for BTREE emulation in GiST.Tom Lane2001-08-222-0/+2000
From Oleg Bartunov and Teodor Sigaev.