postgresql/src/include/commands/conversioncmds.h

27 lines
911 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* conversioncmds.h
* prototypes for conversioncmds.c.
*
*
2009-01-01 18:24:05 +01:00
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
2009-01-01 18:24:05 +01:00
* $PostgreSQL: pgsql/src/include/commands/conversioncmds.h,v 1.18 2009/01/01 17:23:58 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef CONVERSIONCMDS_H
#define CONVERSIONCMDS_H
#include "nodes/parsenodes.h"
extern void CreateConversionCommand(CreateConversionStmt *parsetree);
extern void DropConversionsCommand(DropStmt *drop);
2003-06-27 16:45:32 +02:00
extern void RenameConversion(List *name, const char *newname);
extern void AlterConversionOwner(List *name, Oid newOwnerId);
extern void AlterConversionOwner_oid(Oid conversionOid, Oid newOwnerId);
2002-09-04 22:31:48 +02:00
#endif /* CONVERSIONCMDS_H */