From c219d9b0a55bcdf81b00da6bad24ac2bf3e53d20 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Thu, 30 Aug 2012 16:15:44 -0400 Subject: Split tuple struct defs from htup.h to htup_details.h This reduces unnecessary exposure of other headers through htup.h, which is very widely included by many files. I have chosen to move the function prototypes to the new file as well, because that means htup.h no longer needs to include tupdesc.h. In itself this doesn't have much effect in indirect inclusion of tupdesc.h throughout the tree, because it's also required by execnodes.h; but it's something to explore in the future, and it seemed best to do the htup.h change now while I'm busy with it. --- src/backend/utils/adt/enum.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/backend/utils/adt/enum.c') diff --git a/src/backend/utils/adt/enum.c b/src/backend/utils/adt/enum.c index de46f4c55fb..9388f7848ec 100644 --- a/src/backend/utils/adt/enum.c +++ b/src/backend/utils/adt/enum.c @@ -15,6 +15,7 @@ #include "access/genam.h" #include "access/heapam.h" +#include "access/htup_details.h" #include "catalog/indexing.h" #include "catalog/pg_enum.h" #include "libpq/pqformat.h" -- cgit v1.2.3