aboutsummaryrefslogtreecommitdiff
path: root/contrib/ltree/_ltree_gist.c
Commit message (Collapse)AuthorAge
* Error message editing in contrib (mostly by Joe Conway --- thanks Joe!)Tom Lane2003-07-24
|
* Changes:Bruce Momjian2003-06-11
| | | | | | | | | | | 1 intarray: bugfix for int[]-int[] operation 2 intarray: split _int.c to several files (_int.c now is unused) 3 ntarray (gist__intbig_ops opclass): use special type for index storage 4 ltree (gist__ltree_ops opclass), intarray (gist__intbig_ops): optimize GiST's penalty and picksplit interface functions, now use Hemming distance. Teodor Sigaev
* Please apply patches for contrib/ltree.Bruce Momjian2003-02-19
| | | | | | | | | | | | | | ltree_73.patch.gz - for 7.3 : Fix ~ operation bug: eg '1.1.1' ~ '*.1' ltree_74.patch.gz - for current CVS Fix ~ operation bug: eg '1.1.1' ~ '*.1' Add ? operation Optimize index storage Last change needs drop/create all ltree indexes, so only for 7.4 Teodor Sigaev
* pgindent run.Bruce Momjian2002-09-04
|
* Modify array operations to include array's element type OID in theTom Lane2002-08-26
| | | | | | | | | | array header, and to compute sizing and alignment of array elements the same way normal tuple access operations do --- viz, using the tupmacs.h macros att_addlength and att_align. This makes the world safe for arrays of cstrings or intervals, and should make it much easier to write array-type-polymorphic functions; as examples see the cleanups of array_out and contrib/array_iterator. By Joe Conway and Tom Lane.
* Fixed very stupid but important bug: mixing calls of some founctions fromBruce Momjian2002-08-10
| | | | | | contrib/tsearch and contrib/ltree :) Teodor Sigaev
* Add ltree data type to contrib, from Teodor Sigaev and Oleg Bartunov.Bruce Momjian2002-07-30