1 | /*------------------------------------------------------------------------- |
2 | * |
3 | * conversioncmds.h |
4 | * prototypes for conversioncmds.c. |
5 | * |
6 | * |
7 | * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group |
8 | * Portions Copyright (c) 1994, Regents of the University of California |
9 | * |
10 | * src/include/commands/conversioncmds.h |
11 | * |
12 | *------------------------------------------------------------------------- |
13 | */ |
14 | |
15 | #ifndef CONVERSIONCMDS_H |
16 | #define CONVERSIONCMDS_H |
17 | |
18 | #include "catalog/objectaddress.h" |
19 | #include "nodes/parsenodes.h" |
20 | |
21 | extern ObjectAddress CreateConversionCommand(CreateConversionStmt *parsetree); |
22 | |
23 | #endif /* CONVERSIONCMDS_H */ |
24 | |