mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
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.
This commit is contained in:
@ -1053,6 +1053,7 @@ extern Datum window_nth_value(PG_FUNCTION_ARGS);
|
||||
|
||||
/* access/gin/ginarrayproc.c */
|
||||
extern Datum ginarrayextract(PG_FUNCTION_ARGS);
|
||||
extern Datum ginarrayextract_2args(PG_FUNCTION_ARGS);
|
||||
extern Datum ginqueryarrayextract(PG_FUNCTION_ARGS);
|
||||
extern Datum ginarrayconsistent(PG_FUNCTION_ARGS);
|
||||
|
||||
|
Reference in New Issue
Block a user