/*------------------------------------------------------------------------- * * 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 * * $Id: conversioncmds.h,v 1.2 2002/07/25 10:07:13 ishii Exp $ * *------------------------------------------------------------------------- */ #ifndef CONVERSIONCMDS_H #define CONVERSIONCMDS_H #include "nodes/parsenodes.h" extern void CreateConversionCommand(CreateConversionStmt *parsetree); extern void DropConversionCommand(List *conversion_name, DropBehavior behavior); #endif /* CONVERSIONCMDS_H */