From: Tom Hughes Date: Sun, 27 Feb 2022 11:35:31 +0000 (+0000) Subject: Add missing PG_MODULE_MAGIC to database function source X-Git-Tag: live~1216 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/f76dfc77b8c5aa26c83a136b9708405c0cec0477 Add missing PG_MODULE_MAGIC to database function source --- diff --git a/db/functions/quadtile.c b/db/functions/quadtile.c index 748e0b9aa..0f787b739 100644 --- a/db/functions/quadtile.c +++ b/db/functions/quadtile.c @@ -23,3 +23,7 @@ PG_FUNCTION_INFO_V1(tile_for_point); * * (without all the *s) */ + +#ifdef PG_MODULE_MAGIC +PG_MODULE_MAGIC; +#endif