mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-23 03:12:20 +00:00
20 lines
471 B
C
20 lines
471 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* discard.h
|
|
* prototypes for discard.c.
|
|
*
|
|
*
|
|
* Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/commands/discard.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DISCARD_H
|
|
#define DISCARD_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
extern void DiscardCommand(DiscardStmt *stmt, bool isTopLevel);
|
|
|
|
#endif /* DISCARD_H */
|