From 11333426f103bedef311d1dd88b62176276b8544 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 18 Jul 2002 16:47:26 +0000 Subject: Implement DROP SCHEMA. It lacks support for dropping conversions and operator classes, both of which are schema-local and so should really be droppable. --- src/backend/tcop/postgres.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/backend/tcop/postgres.c') diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 154e478687b..862faf34cae 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -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 = "???"; -- cgit v1.2.3