diff options
Diffstat (limited to 'contrib/ltree/ltree.h')
-rw-r--r-- | contrib/ltree/ltree.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/ltree/ltree.h b/contrib/ltree/ltree.h index 606b3e3a747..1bc36e722de 100644 --- a/contrib/ltree/ltree.h +++ b/contrib/ltree/ltree.h @@ -140,10 +140,14 @@ Datum ltree_isparent(PG_FUNCTION_ARGS); Datum ltree_risparent(PG_FUNCTION_ARGS); Datum ltq_regex(PG_FUNCTION_ARGS); Datum ltq_rregex(PG_FUNCTION_ARGS); +Datum lt_q_regex(PG_FUNCTION_ARGS); +Datum lt_q_rregex(PG_FUNCTION_ARGS); Datum ltxtq_exec(PG_FUNCTION_ARGS); Datum ltxtq_rexec(PG_FUNCTION_ARGS); Datum _ltq_regex(PG_FUNCTION_ARGS); Datum _ltq_rregex(PG_FUNCTION_ARGS); +Datum _lt_q_regex(PG_FUNCTION_ARGS); +Datum _lt_q_rregex(PG_FUNCTION_ARGS); Datum _ltxtq_exec(PG_FUNCTION_ARGS); Datum _ltxtq_rexec(PG_FUNCTION_ARGS); Datum _ltree_isparent(PG_FUNCTION_ARGS); @@ -173,7 +177,7 @@ ltree *lca_inner(ltree ** a, int len); /* GiST support for ltree */ #define BITBYTE 8 -#define SIGLENINT 8 +#define SIGLENINT 2 #define SIGLEN ( sizeof(int4)*SIGLENINT ) #define SIGLENBIT (SIGLEN*BITBYTE) typedef unsigned char BITVEC[SIGLEN]; |