From: Álvaro Herrera Date: Tue, 7 Oct 2025 08:45:57 +0000 (+0200) Subject: Fix compile of src/tutorial/funcs.c X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c53775185dc4b17cd951f5fff74c020a2469da27;p=thirdparty%2Fpostgresql.git Fix compile of src/tutorial/funcs.c I broke this with recent #include removals. Fix by adding an explicit Reported-by: Devrim Gündüz Discussion: https://postgr.es/m/5e2c2d7c44434f3f0af7523864b27fe4fb590902.camel@gunduz.org --- diff --git a/src/tutorial/funcs.c b/src/tutorial/funcs.c index 4a61177567c..3cc94534187 100644 --- a/src/tutorial/funcs.c +++ b/src/tutorial/funcs.c @@ -13,6 +13,7 @@ #include "executor/executor.h" /* for GetAttributeByName() */ #include "utils/fmgrprotos.h" /* for text_starts_with() */ #include "utils/geo_decls.h" /* for point type */ +#include "varatt.h" /* for VARDATA/VARSIZE macros */ PG_MODULE_MAGIC;