mirror of
https://github.com/postgres/postgres.git
synced 2026-02-28 04:10:35 -05:00
22 lines
600 B
C
22 lines
600 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* conversioncmds.h
|
|
* prototypes for conversioncmds.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2014, 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);
|
|
|
|
#endif /* CONVERSIONCMDS_H */
|