conversioncmds.h 645 B

1234567891011121314151617181920212223
  1. /*-------------------------------------------------------------------------
  2. *
  3. * conversioncmds.h
  4. * prototypes for conversioncmds.c.
  5. *
  6. *
  7. * Portions Copyright (c) 1996-2016, 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. #ifndef CONVERSIONCMDS_H
  15. #define CONVERSIONCMDS_H
  16. #include "catalog/objectaddress.h"
  17. #include "nodes/parsenodes.h"
  18. extern ObjectAddress CreateConversionCommand(CreateConversionStmt *parsetree);
  19. #endif /* CONVERSIONCMDS_H */