blob: 66f94c3aed23fc98c3c4c6eb489188b868150395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*-------------------------------------------------------------------------
*
* utility.h
* prototypes for utility.c.
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: utility.h,v 1.7.2.1 1999/07/30 17:07:20 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef UTILITY_H
#define UTILITY_H
#include "executor/execdesc.h"
extern void ProcessUtility(Node *parsetree, CommandDest dest);
#endif /* UTILITY_H */
|