diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-02-16 17:24:06 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-02-16 17:24:46 -0500 |
commit | 6595dd04d136d5c97ae05fc580572c8f00042143 (patch) | |
tree | 149ade470a6058e4cc332f5c22bf7230cd8f2c48 /src/include/tsearch/ts_utils.h | |
parent | b15fabf997fb3cd5e0680a6ad7576377774aae07 (diff) | |
download | postgresql-6595dd04d136d5c97ae05fc580572c8f00042143.tar.gz |
Add backwards-compatible declarations of some core GIN support functions.
These are needed to support reloading dumps of 9.0 installations containing
contrib/intarray or contrib/tsearch2. Since not only regular dump/reload
but binary upgrade would fail, it seems worth the trouble to carry these
stubs for awhile. Note that the contrib opclasses referencing these
functions will still work fine, since GIN doesn't actually pay any
attention to the declared signature of a support function.
Diffstat (limited to 'src/include/tsearch/ts_utils.h')
-rw-r--r-- | src/include/tsearch/ts_utils.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/tsearch/ts_utils.h b/src/include/tsearch/ts_utils.h index 1bd4034488..9c1019f49a 100644 --- a/src/include/tsearch/ts_utils.h +++ b/src/include/tsearch/ts_utils.h @@ -149,6 +149,9 @@ extern Datum gin_cmp_tslexeme(PG_FUNCTION_ARGS); extern Datum gin_cmp_prefix(PG_FUNCTION_ARGS); extern Datum gin_extract_tsquery(PG_FUNCTION_ARGS); extern Datum gin_tsquery_consistent(PG_FUNCTION_ARGS); +extern Datum gin_extract_tsvector_2args(PG_FUNCTION_ARGS); +extern Datum gin_extract_tsquery_5args(PG_FUNCTION_ARGS); +extern Datum gin_tsquery_consistent_6args(PG_FUNCTION_ARGS); /* * Possible strategy numbers for indexes |