diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-10-27 13:34:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-10-27 13:34:47 +0000 |
commit | 3332e38189b27b64428db4f0bcd5459800de1cfc (patch) | |
tree | 79dce25e92a44802c7709ed2af3e898c9fd28af4 /src/bin/psql/common.c | |
parent | 69f16b562a9088d708a588333afcf16e84317a4e (diff) | |
download | postgresql-3332e38189b27b64428db4f0bcd5459800de1cfc.tar.gz postgresql-3332e38189b27b64428db4f0bcd5459800de1cfc.zip |
Disable expanded mode only for \d tablename, not for all backslash
commands. Per complaint that \df+ is clearer in expanded mode.
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r-- | src/bin/psql/common.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 2999c169ef3..1b01a97d885 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.108 2005/10/15 02:49:40 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.109 2005/10/27 13:34:47 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -795,8 +795,6 @@ PrintQueryTuples(const PGresult *results) { printQueryOpt my_popt = pset.popt; - my_popt.topt.normal_query = true; - /* write output to \g argument, if any */ if (pset.gfname) { |