summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÁlvaro Herrera <alvherre@kurilemu.de>2025-10-07 10:45:57 +0200
committerÁlvaro Herrera <alvherre@kurilemu.de>2025-10-07 10:45:57 +0200
commitc53775185dc4b17cd951f5fff74c020a2469da27 (patch)
treeab0eb0aa379513d83e9b9ca21c0348be206c906c
parent9c9d41af4db7e7f81d0f9abc7dc16402386091b0 (diff)
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 <devrim@gunduz.org> Discussion: https://postgr.es/m/5e2c2d7c44434f3f0af7523864b27fe4fb590902.camel@gunduz.org
-rw-r--r--src/tutorial/funcs.c1
1 files changed, 1 insertions, 0 deletions
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;