From f76dfc77b8c5aa26c83a136b9708405c0cec0477 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 27 Feb 2022 11:35:31 +0000 Subject: [PATCH] Add missing PG_MODULE_MAGIC to database function source --- db/functions/quadtile.c | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.43.2