1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

Implement DROP SCHEMA. It lacks support for dropping conversions and

operator classes, both of which are schema-local and so should really
be droppable.
This commit is contained in:
Tom Lane
2002-07-18 16:47:26 +00:00
parent 8bed350c4a
commit 11333426f1
16 changed files with 438 additions and 107 deletions

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.190 2002/07/18 04:43:51 momjian Exp $
* $Id: parsenodes.h,v 1.191 2002/07/18 16:47:26 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1136,7 +1136,7 @@ typedef struct CreateDomainStmt
} CreateDomainStmt;
/* ----------------------
* Drop Table|Sequence|View|Index|Type|Domain Statement
* Drop Table|Sequence|View|Index|Type|Domain|Conversion|Schema Statement
* ----------------------
*/
@@ -1147,6 +1147,7 @@ typedef struct CreateDomainStmt
#define DROP_TYPE 5
#define DROP_DOMAIN 6
#define DROP_CONVERSION 7
#define DROP_SCHEMA 8
typedef struct DropStmt
{