mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +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:
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.270 2002/07/13 01:02:14 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.271 2002/07/18 16:47:25 tgl Exp $
|
||||
*
|
||||
* NOTES
|
||||
* this is the "main" module of the postgres backend and
|
||||
@ -1693,7 +1693,7 @@ PostgresMain(int argc, char *argv[], const char *username)
|
||||
if (!IsUnderPostmaster)
|
||||
{
|
||||
puts("\nPOSTGRES backend interactive interface ");
|
||||
puts("$Revision: 1.270 $ $Date: 2002/07/13 01:02:14 $\n");
|
||||
puts("$Revision: 1.271 $ $Date: 2002/07/18 16:47:25 $\n");
|
||||
}
|
||||
|
||||
/*
|
||||
@ -2220,7 +2220,10 @@ CreateCommandTag(Node *parsetree)
|
||||
tag = "DROP DOMAIN";
|
||||
break;
|
||||
case DROP_CONVERSION:
|
||||
tag = "DROP CONVERSON";
|
||||
tag = "DROP CONVERSION";
|
||||
break;
|
||||
case DROP_SCHEMA:
|
||||
tag = "DROP SCHEMA";
|
||||
break;
|
||||
default:
|
||||
tag = "???";
|
||||
|
Reference in New Issue
Block a user