diff options
Diffstat (limited to 'contrib/postgres_fdw/postgres_fdw.c')
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index 7a5439a460b..ac14c06c715 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -49,7 +49,10 @@ #include "utils/sampling.h" #include "utils/selfuncs.h" -PG_MODULE_MAGIC; +PG_MODULE_MAGIC_EXT( + .name = "postgres_fdw", + .version = PG_VERSION +); /* Default CPU cost to start up a foreign query. */ #define DEFAULT_FDW_STARTUP_COST 100.0 |