From 835f01025731cc222189e3cd34867e31ce7319bc Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Tue, 2 Apr 2024 12:17:41 -0700 Subject: [PATCH] Fixed missing header for Postgres 12 --- src/hnswutils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hnswutils.c b/src/hnswutils.c index 4b259fc..9bbd398 100644 --- a/src/hnswutils.c +++ b/src/hnswutils.c @@ -3,6 +3,7 @@ #include #include "access/generic_xlog.h" +#include "catalog/pg_type_d.h" #include "hnsw.h" #include "lib/pairingheap.h" #include "storage/bufmgr.h"