Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace the now-incompatible-with-core contrib/tsearch2 module with a | Tom Lane | 2007-11-13 | 1 | -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 Momjian | 2006-07-10 | 1 | -0/+1 |
| | |||||
* | Re-run pgindent, fixing a problem where comment lines after a blank | Bruce Momjian | 2005-11-22 | 1 | -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 Sigaev | 2005-11-08 | 1 | -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 |