
Extracted from a larger patch by Dimitri Fontaine. It is hoped that this will provide infrastructure for enriching the new event trigger functionality, but it seems possibly useful for other purposes as well.
24 lines
662 B
C
24 lines
662 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* conversioncmds.h
|
|
* prototypes for conversioncmds.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/commands/conversioncmds.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef CONVERSIONCMDS_H
|
|
#define CONVERSIONCMDS_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
extern Oid CreateConversionCommand(CreateConversionStmt *parsetree);
|
|
extern Oid RenameConversion(List *name, const char *newname);
|
|
|
|
#endif /* CONVERSIONCMDS_H */
|