summaryrefslogtreecommitdiff
path: root/src/include/commands/conversioncmds.h
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2005-11-19 17:39:45 +0000
committerAndrew Dunstan <andrew@dunslane.net>2005-11-19 17:39:45 +0000
commitdaea4d8eaee010f41e46bb98cd1b2da2f9fb75d9 (patch)
treea7232bf09a071a87a955337395b9cefd4a62a8e8 /src/include/commands/conversioncmds.h
parent8ef289dba12f16f3692c235863a887672499a5d9 (diff)
downloadpostgresql-daea4d8eaee010f41e46bb98cd1b2da2f9fb75d9.tar.gz
DROP objecttype IF EXISTS for the following objects:
table view index sequence schema type domain conversion
Diffstat (limited to 'src/include/commands/conversioncmds.h')
-rw-r--r--src/include/commands/conversioncmds.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/commands/conversioncmds.h b/src/include/commands/conversioncmds.h
index b64b361d27..f484ceaff2 100644
--- a/src/include/commands/conversioncmds.h
+++ b/src/include/commands/conversioncmds.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/commands/conversioncmds.h,v 1.10 2005/06/28 05:09:12 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/commands/conversioncmds.h,v 1.11 2005/11/19 17:39:45 adunstan Exp $
*
*-------------------------------------------------------------------------
*/
@@ -18,7 +18,8 @@
#include "nodes/parsenodes.h"
extern void CreateConversionCommand(CreateConversionStmt *parsetree);
-extern void DropConversionCommand(List *conversion_name, DropBehavior behavior);
+extern void DropConversionCommand(List *conversion_name,
+ DropBehavior behavior, bool missing_ok);
extern void RenameConversion(List *name, const char *newname);
extern void AlterConversionOwner(List *name, Oid newOwnerId);