diff options
Diffstat (limited to 'src/backend/utils/adt/tsgistidx.c')
-rw-r--r-- | src/backend/utils/adt/tsgistidx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/tsgistidx.c b/src/backend/utils/adt/tsgistidx.c index 0100cf4f372..cdd5d43fce5 100644 --- a/src/backend/utils/adt/tsgistidx.c +++ b/src/backend/utils/adt/tsgistidx.c @@ -298,7 +298,7 @@ typedef struct * is there value 'val' in array or not ? */ static bool -checkcondition_arr(void *checkval, QueryOperand *val) +checkcondition_arr(void *checkval, QueryOperand *val, ExecPhraseData *data) { int32 *StopLow = ((CHKVAL *) checkval)->arrb; int32 *StopHigh = ((CHKVAL *) checkval)->arre; @@ -327,7 +327,7 @@ checkcondition_arr(void *checkval, QueryOperand *val) } static bool -checkcondition_bit(void *checkval, QueryOperand *val) +checkcondition_bit(void *checkval, QueryOperand *val, ExecPhraseData *data) { /* * we are not able to find a prefix in signature tree |