postgresql/src/include/tcop/utility.h

25 lines
655 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* utility.h
* prototypes for utility.c.
*
*
2002-06-20 22:29:54 +02:00
* 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 $
*
*-------------------------------------------------------------------------
*/
#ifndef UTILITY_H
#define UTILITY_H
#include "executor/execdesc.h"
1996-11-04 13:07:05 +01:00
extern void ProcessUtility(Node *parsetree, CommandDest dest,
2002-09-04 22:31:48 +02:00
char *completionTag);
extern const char *CreateCommandTag(Node *parsetree);
#endif /* UTILITY_H */