From 60b741927fff6fe5e38fa63b1f38c3c8231e1c62 Mon Sep 17 00:00:00 2001 From: Marco Slot Date: Sun, 24 Nov 2019 06:04:22 +0100 Subject: [PATCH] Add missing include to deparse_function_stmts.c --- src/backend/distributed/deparser/deparse_function_stmts.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/distributed/deparser/deparse_function_stmts.c b/src/backend/distributed/deparser/deparse_function_stmts.c index 4600dd47b..fd547d14e 100644 --- a/src/backend/distributed/deparser/deparse_function_stmts.c +++ b/src/backend/distributed/deparser/deparse_function_stmts.c @@ -20,6 +20,7 @@ #include "access/htup_details.h" #include "catalog/namespace.h" #include "catalog/pg_proc.h" +#include "catalog/pg_type.h" #include "commands/defrem.h" #include "distributed/citus_ruleutils.h" #include "distributed/commands.h"