We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e41114 commit 2fe1b4dCopy full SHA for 2fe1b4d
src/bin/psql/describe.c
@@ -8,7 +8,7 @@
8
*
9
* Copyright (c) 2000-2009, PostgreSQL Global Development Group
10
11
- * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.229 2009/10/28 18:09:44 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.230 2009/11/03 10:34:47 petere Exp $
12
*/
13
#include "postgres_fe.h"
14
@@ -1306,7 +1306,7 @@ describeOneTableDetails(const char *schemaname,
1306
printTableAddHeader(&cont, headers[i], true, 'l');
1307
1308
/* Check if table is a view */
1309
- if (tableinfo.relkind == 'v')
+ if (tableinfo.relkind == 'v' && verbose)
1310
{
1311
PGresult *result;
1312
0 commit comments