mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
0645663e6c
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
8 lines
149 B
C
8 lines
149 B
C
#ifndef __REWRITE_H__
|
|
#define __REWRITE_H__
|
|
|
|
ITEM *clean_NOT_v2(ITEM * ptr, int4 *len);
|
|
ITEM *clean_fakeval_v2(ITEM * ptr, int4 *len);
|
|
|
|
#endif
|