From 66d69c68274a1cc24335745b63eee190e8af1061 Mon Sep 17 00:00:00 2001 From: Julien Rouhaud Date: Sun, 22 Sep 2024 14:36:23 +0800 Subject: [PATCH] fix: Add missing declaration for hypo_use_real_oids variable. --- include/hypopg.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/hypopg.h b/include/hypopg.h index 60a4e42..250676a 100644 --- a/include/hypopg.h +++ b/include/hypopg.h @@ -49,6 +49,7 @@ extern bool isExplain; /* GUC for enabling / disabling hypopg during EXPLAIN */ extern bool hypo_is_enabled; +extern bool hypo_use_real_oids; extern MemoryContext HypoMemoryContext; Oid hypo_getNewOid(Oid relid);