pgsql: Fix an error in psql that overcounted output lines.

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix an error in psql that overcounted output lines.
Date: 2014-11-21 17:41:36
Message-ID: E1XrsDA-0005uD-2I@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix an error in psql that overcounted output lines.

This error counted the first line of a cell as "extra". The effect was
to cause far too frequent invocation of the pager. In most cases this
can be worked around (for example, by using the "less" pager with the -F
flag), so don't backpatch.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/4077fb4d1d34ad04dfb95ba676c2b43ea1f1da53

Modified Files
--------------
src/bin/psql/print.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2014-11-21 19:05:53 pgsql: Simplify API for initially hooking custom-path providers into th
Previous Message Andrew Dunstan 2014-11-21 17:21:41 pgsql: Make psql's \sf and \ef honor ECHO_HIDDEN.