summaryrefslogtreecommitdiff
path: root/contrib/btree_gist/btree_gist.sql.in
Commit message (Collapse)AuthorAgeFilesLines
* Fix btree_gist for new larger money type.Tom Lane2007-01-031-1/+1
|
* Clean up CREATE FUNCTION syntax usage in contrib and elsewhere, inPeter Eisentraut2006-02-271-121/+121
| | | | | particular get rid of single quotes around language names and old WITH () construct.
* Update btree_gist for CIDR/INET changes --- there's really no need toTom Lane2006-01-261-16/+6
| | | | have a separate set of CIDR code here, either.
* Fix storage size for btree_gist interval indexes. Fix penaltyTom Lane2005-07-211-9/+9
| | | | | | calculations for interval and time/timetz to behave sanely for both integer and float timestamps; up to now I think it's been doing something pretty strange...
* Simplify/clean up code for varlena typesTeodor Sigaev2005-03-011-6/+11
|
* - Add aligment of variable data typesTeodor Sigaev2004-06-031-1/+6
| | | | | | - Add aligment for interval data types - Avoid floating point overflow in penalty functions Janko Richter <jankorichter@yahoo.de> and teodor
* New version. Add support for int2, int8, float4, float8, timestamp ↵Teodor Sigaev2004-05-281-169/+906
| | | | 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
* Cleanup vectors of GISTENTRY and eliminate problem with 64-bit strict-alignedTeodor Sigaev2004-03-301-12/+12
| | | | | | boxes. Change interface to user-defined GiST support methods union and picksplit. Now instead of bytea struct it used special GistEntryVector structure.
* Backend support for autocommit removed, per recent discussions. TheTom Lane2003-05-141-2/+0
| | | | | | only remnant of this failed experiment is that the server will take SET AUTOCOMMIT TO ON. Still TODO: provide some client-side autocommit logic in libpq.
* please apply attached patch to current CVS.Bruce Momjian2003-03-201-3/+76
| | | | | btree_gist now supports int2 ! Thanks Janko Richter for contribution.
* We just released new version of contrib/btree_gistBruce Momjian2003-02-191-0/+223
| | | | | | | (7.3 and current CVS) with support of int8, float4, float8 in addition to int4. Thanks Janko Richter for contribution. Oleg Bartunov
* Update /contrib for "autocommit TO 'on'".Bruce Momjian2002-10-181-30/+68
| | | | | | | | | | Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs.
* Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane2002-08-221-35/+35
| | | | | | with OPAQUE, as per recent pghackers discussion. I still want to do some more work on the 'cstring' pseudo-type, but I'm going to commit the bulk of the changes now before the tree starts shifting under me ...
* Replace ad-hoc insertions into pg_opclass and friends with CREATETom Lane2002-07-301-187/+36
| | | | OPERATOR CLASS commands. Further tweaking of documentation for same.
* Opclasses live in namespaces. I also took the opportunity to createTom Lane2002-04-171-12/+19
| | | | | | | an 'opclass owner' column in pg_opclass. Nothing is done with it at present, but since there are plans to invent a CREATE OPERATOR CLASS command soon, we'll probably want DROP OPERATOR CLASS too, which suggests that a notion of ownership would be a good idea.
* New contrib module for BTREE emulation in GiST.Tom Lane2001-08-221-0/+263
From Oleg Bartunov and Teodor Sigaev.