summaryrefslogtreecommitdiff
path: root/contrib/tsearch2/query_util.h
Commit message (Collapse)AuthorAgeFilesLines
* Replace the now-incompatible-with-core contrib/tsearch2 module with aTom Lane2007-11-131-47/+0
| | | | | | | | compatibility package. This supports importing dumps from past versions using tsearch2, and provides the old names and API for most functions that were changed. (rewrite(ARRAY[...]) is a glaring omission, though.) Pavel Stehule and Tom Lane
* Allow /contrib include files to compile on their own.Bruce Momjian2006-07-101-0/+1
|
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-27/+29
| | | | | | | | | comment line where output as too long, and update typedefs for /lib directory. Also fix case where identifiers were used as variable names in the backend, but as typedefs in ecpg (favor the backend for indenting). Backpatch to 8.1.X.
* New features for tsearch2:Teodor Sigaev2005-11-081-0/+44
1 Comparison operation for tsquery 2 Btree index on tsquery 3 numnode(tsquery) - returns 'length' of tsquery 4 tsquery @ tsquery, tsquery ~ tsquery - contains, contained for tsquery. Note: They don't gurantee exact result, only MAY BE, so it useful only for speed up rewrite functions 5 GiST index support for @,~ 6 rewrite(): select rewrite(orig, what, to); select rewrite(ARRAY[orig, what, to]) from tsquery_table; select rewrite(orig, 'select what, to from tsquery_table;'); 7 significantly improve cover algorithm