mirror of
https://github.com/postgres/postgres.git
synced 2026-02-21 17:00:40 -05:00
aggregates, conversions, functions, operators, operator classes, schemas, types, and tablespaces. Fold the existing implementations of alter domain owner and alter database owner in with these. Christopher Kings-Lynne
25 lines
867 B
C
25 lines
867 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* conversioncmds.h
|
|
* prototypes for conversioncmds.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/commands/conversioncmds.h,v 1.7 2004/06/25 21:55:58 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef CONVERSIONCMDS_H
|
|
#define CONVERSIONCMDS_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
extern void CreateConversionCommand(CreateConversionStmt *parsetree);
|
|
extern void DropConversionCommand(List *conversion_name, DropBehavior behavior);
|
|
extern void RenameConversion(List *name, const char *newname);
|
|
extern void AlterConversionOwner(List *name, AclId newOwnerSysId);
|
|
|
|
#endif /* CONVERSIONCMDS_H */
|