postgresql/contrib/postgres_fdw
Peter Eisentraut e7128e8dbb Create function prototype as part of PG_FUNCTION_INFO_V1 macro
Because of gcc -Wmissing-prototypes, all functions in dynamically
loadable modules must have a separate prototype declaration.  This is
meant to detect global functions that are not declared in header files,
but in cases where the function is called via dfmgr, this is redundant.
Besides filling up space with boilerplate, this is a frequent source of
compiler warnings in extension modules.

We can fix that by creating the function prototype as part of the
PG_FUNCTION_INFO_V1 macro, which such modules have to use anyway.  That
makes the code of modules cleaner, because there is one less place where
the entry points have to be listed, and creates an additional check that
functions have the right prototype.

Remove now redundant prototypes from contrib and other modules.
2014-04-18 00:03:19 -04:00
..
expected Fix contrib/postgres_fdw's remote-estimate representation of array Params. 2014-04-16 17:21:57 -04:00
sql Fix contrib/postgres_fdw's remote-estimate representation of array Params. 2014-04-16 17:21:57 -04:00
.gitignore Add postgres_fdw contrib module. 2013-02-21 05:27:16 -05:00
Makefile Add postgres_fdw contrib module. 2013-02-21 05:27:16 -05:00
connection.c Improve connection-failure error handling in contrib/postgres_fdw. 2014-02-03 21:30:20 -05:00
deparse.c Fix contrib/postgres_fdw's remote-estimate representation of array Params. 2014-04-16 17:21:57 -04:00
option.c Create function prototype as part of PG_FUNCTION_INFO_V1 macro 2014-04-18 00:03:19 -04:00
postgres_fdw--1.0.sql Add postgres_fdw contrib module. 2013-02-21 05:27:16 -05:00
postgres_fdw.c Create function prototype as part of PG_FUNCTION_INFO_V1 macro 2014-04-18 00:03:19 -04:00
postgres_fdw.control Add postgres_fdw contrib module. 2013-02-21 05:27:16 -05:00
postgres_fdw.h Fix contrib/postgres_fdw to handle multiple join conditions properly. 2014-03-07 16:36:40 -05:00