Thread: pgsql: Add backwards-compatible declarations of some core GIN support f

pgsql: Add backwards-compatible declarations of some core GIN support f

From
Tom Lane
Date:
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.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/6595dd04d136d5c97ae05fc580572c8f00042143

Modified Files
--------------
contrib/intarray/intarray--unpackaged--1.0.sql |    7 +++-
src/backend/access/gin/ginarrayproc.c          |   14 ++++++++
src/backend/utils/adt/tsginidx.c               |   40 ++++++++++++++++++++++++
src/include/catalog/catversion.h               |    2 +-
src/include/catalog/pg_proc.h                  |    8 +++++
src/include/tsearch/ts_utils.h                 |    3 ++
src/include/utils/builtins.h                   |    1 +
7 files changed, 72 insertions(+), 3 deletions(-)