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

From Tom Lane
Subject pgsql: Add backwards-compatible declarations of some core GIN support f
Date
Msg-id E1Pppnw-0004Ng-PG@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
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(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Also process psqlrc when running psql -l
Next
From: Tom Lane
Date:
Subject: pgsql: Fix bogus test for hypothetical indexes in get_actual_variable_r