diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-07 17:54:42 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-07 17:54:42 +0000 |
commit | 7d1b8fe71622b979326835295a0bf47b3ac903b1 (patch) | |
tree | 4998ae0b81f4c057c008467f2051e090c76ebd49 /src/bin/psql/command.c | |
parent | b976b8af803fb1b3d9ab6a5ae5e13f3a9a90da32 (diff) | |
download | postgresql-7d1b8fe71622b979326835295a0bf47b3ac903b1.tar.gz postgresql-7d1b8fe71622b979326835295a0bf47b3ac903b1.zip |
Back out psql domain improvements until domain is applied.
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index b9388b5816f..a9ca4b30b96 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.68 2002/03/06 20:39:45 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.69 2002/03/07 17:54:39 momjian Exp $ */ #include "postgres_fe.h" #include "command.h" @@ -380,10 +380,6 @@ exec_command(const char *cmd, case 'u': success = describeUsers(name); break; - case 'D': - success = listDomains(name); - break; - default: status = CMD_UNKNOWN; } |