From 2ab15afcdd28ce3d52a9b01d41f67687ac7170d8 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 22 Aug 2011 23:19:21 -0400 Subject: [PATCH] Add missing include so include file compiles cleanly on its own. --- src/include/commands/tablecmds.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/commands/tablecmds.h b/src/include/commands/tablecmds.h index 3f971eb218..0e8bbe0929 100644 --- a/src/include/commands/tablecmds.h +++ b/src/include/commands/tablecmds.h @@ -14,6 +14,7 @@ #ifndef TABLECMDS_H #define TABLECMDS_H +#include "access/htup.h" #include "nodes/parsenodes.h" #include "storage/lock.h" #include "utils/relcache.h"