diff options
author | Peter Eisentraut | 2009-11-03 10:34:47 +0000 |
---|---|---|
committer | Peter Eisentraut | 2009-11-03 10:34:47 +0000 |
commit | 2fe1b4dd651917aad2accac7ba8adb44d9f54930 (patch) | |
tree | 160011ab734bfd5d34b3a982714878a3a7ccf59a | |
parent | 9e41114676aee46c1aec0212405ee95c131c157e (diff) |
In psql, show view definition only with \d+, not with \d
The rationale is that view definitions tend to be long and obscure the
main information about the view.
-rw-r--r-- | src/bin/psql/describe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 51a4db15fa..3fd2b2a971 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -8,7 +8,7 @@ * * Copyright (c) 2000-2009, PostgreSQL Global Development Group * - * $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 $ */ #include "postgres_fe.h" @@ -1306,7 +1306,7 @@ describeOneTableDetails(const char *schemaname, printTableAddHeader(&cont, headers[i], true, 'l'); /* Check if table is a view */ - if (tableinfo.relkind == 'v') + if (tableinfo.relkind == 'v' && verbose) { PGresult *result; |