diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2005-11-22 15:24:18 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2005-11-22 15:24:18 +0000 |
commit | 5b352d8e127b695ab6facf92dbd6af47038d54e3 (patch) | |
tree | 6f77ff5d5d007bbd2677a33375603bbb283f9de8 /src/include/commands/dbcommands.h | |
parent | 179211a68308d051d6ae70046b4cd5ec635e1bc7 (diff) | |
download | postgresql-5b352d8e127b695ab6facf92dbd6af47038d54e3.tar.gz postgresql-5b352d8e127b695ab6facf92dbd6af47038d54e3.zip |
DROP DATABASE IF EXISTS variant
Diffstat (limited to 'src/include/commands/dbcommands.h')
-rw-r--r-- | src/include/commands/dbcommands.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/dbcommands.h b/src/include/commands/dbcommands.h index 9c629aff342..bd5511325ca 100644 --- a/src/include/commands/dbcommands.h +++ b/src/include/commands/dbcommands.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/dbcommands.h,v 1.42 2005/10/15 02:49:44 momjian Exp $ + * $PostgreSQL: pgsql/src/include/commands/dbcommands.h,v 1.43 2005/11/22 15:24:18 adunstan Exp $ * *------------------------------------------------------------------------- */ @@ -53,7 +53,7 @@ typedef struct xl_dbase_drop_rec } xl_dbase_drop_rec; extern void createdb(const CreatedbStmt *stmt); -extern void dropdb(const char *dbname); +extern void dropdb(const char *dbname, bool missing_ok); extern void RenameDatabase(const char *oldname, const char *newname); extern void AlterDatabase(AlterDatabaseStmt *stmt); extern void AlterDatabaseSet(AlterDatabaseSetStmt *stmt); |