summaryrefslogtreecommitdiff
path: root/src/include/tcop/utility.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/tcop/utility.h')
-rw-r--r--src/include/tcop/utility.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/include/tcop/utility.h b/src/include/tcop/utility.h
index 96c0dc43c5..38edd4346a 100644
--- a/src/include/tcop/utility.h
+++ b/src/include/tcop/utility.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: utility.h,v 1.17 2003/05/02 20:54:36 tgl Exp $
+ * $Id: utility.h,v 1.18 2003/05/06 20:26:28 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,9 +16,13 @@
#include "executor/execdesc.h"
-extern void ProcessUtility(Node *parsetree, CommandDest dest,
+extern void ProcessUtility(Node *parsetree, DestReceiver *dest,
char *completionTag);
+extern bool UtilityReturnsTuples(Node *parsetree);
+
+extern TupleDesc UtilityTupleDescriptor(Node *parsetree);
+
extern const char *CreateCommandTag(Node *parsetree);
#endif /* UTILITY_H */