pgsql: Add a pager_min_lines setting to psql - Mailing list pgsql-committers

From Andrew Dunstan
Subject pgsql: Add a pager_min_lines setting to psql
Date
Msg-id E1YbsP9-0001Uf-Fa@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Add a pager_min_lines setting to psql

If set, the pager will not be used unless this many lines are to be
displayed, even if that is more than the screen depth. Default is zero,
meaning it's disabled.

There is probably more work to be done in giving the user control over
when the pager is used, particularly when wide output forces use of the
pager regardless of how many lines there are, but this is a start.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/7655f4ccea570d57c4d473cd66b755c03c904942

Modified Files
--------------
doc/src/sgml/ref/psql-ref.sgml     |   12 ++++++++++++
src/bin/psql/command.c             |   21 +++++++++++++++++++--
src/bin/psql/common.c              |    2 +-
src/bin/psql/help.c                |   12 ++++++------
src/bin/psql/input.c               |    2 +-
src/bin/psql/print.c               |   16 +++++++++++-----
src/bin/psql/print.h               |    4 +++-
src/bin/psql/startup.c             |    1 +
src/test/regress/expected/psql.out |    1 +
9 files changed, 55 insertions(+), 16 deletions(-)


pgsql-committers by date:

Previous
From: Andrew Dunstan
Date:
Subject: pgsql: Use standard librart sqrt function in pg_stat_statements
Next
From: Tom Lane
Date:
Subject: pgsql: Better fix for misuse of Float8GetDatumFast().