aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/command.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-04-16 20:04:51 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-04-16 20:04:51 +0000
commit3d62fbc4eb59a24caaf5b0c46978f18236e0031b (patch)
tree2eaaa004dbb73696adb5ea66d38c6dadae5365e9 /src/bin/psql/command.c
parentbfabd4f052f044746de9e830ba28b0b77b8e1feb (diff)
downloadpostgresql-3d62fbc4eb59a24caaf5b0c46978f18236e0031b.tar.gz
postgresql-3d62fbc4eb59a24caaf5b0c46978f18236e0031b.zip
squished \dS+ bug pointed out by Mike Mascari
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r--src/bin/psql/command.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 4387c567ed8..2e895a947cf 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.30 2000/04/16 15:46:40 petere Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.31 2000/04/16 20:04:50 petere Exp $
*/
#include "postgres.h"
#include "command.h"
@@ -306,9 +306,6 @@ exec_command(const char *cmd,
case 'i':
case 's':
case 'S':
- if (cmd[1] == 'S' && cmd[2] == '\0')
- success = listTables("Stvs", NULL, show_verbose);
- else
success = listTables(&cmd[1], name, show_verbose);
break;
default: