diff options
Diffstat (limited to 'src/include/commands/discard.h')
-rw-r--r-- | src/include/commands/discard.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/include/commands/discard.h b/src/include/commands/discard.h new file mode 100644 index 00000000000..f2192392ae4 --- /dev/null +++ b/src/include/commands/discard.h @@ -0,0 +1,20 @@ +/*------------------------------------------------------------------------- + * + * discard.h + * prototypes for discard.c. + * + * + * Copyright (c) 1996-2007, PostgreSQL Global Development Group + * + * $PostgreSQL: pgsql/src/include/commands/discard.h,v 1.1 2007/04/26 16:13:13 neilc Exp $ + * + *------------------------------------------------------------------------- + */ +#ifndef DISCARD_H +#define DISCARD_H + +#include "nodes/parsenodes.h" + +extern void DiscardCommand(DiscardStmt *stmt, bool isTopLevel); + +#endif /* DISCARD_H */ |