postgresql/src/include/commands/conversioncmds.h

24 lines
706 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* conversioncmds.h
* prototypes for conversioncmds.c.
*
*
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
2002-09-04 22:31:48 +02:00
* $Id: conversioncmds.h,v 1.3 2002/09/04 20:31:42 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef CONVERSIONCMDS_H
#define CONVERSIONCMDS_H
#include "nodes/parsenodes.h"
extern void CreateConversionCommand(CreateConversionStmt *parsetree);
extern void DropConversionCommand(List *conversion_name, DropBehavior behavior);
2002-09-04 22:31:48 +02:00
#endif /* CONVERSIONCMDS_H */