pgsql: psql: Make default \watch interval configurable

From: Daniel Gustafsson <dgustafsson(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: psql: Make default \watch interval configurable
Date: 2025-03-25 16:58:15
Message-ID: E1tx7bS-000xBm-2e@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

psql: Make default \watch interval configurable

The default interval for \watch to wait between executing queries,
when executed without a specified interval, was hardcoded to two
seconds. This adds the new variable WATCH_INTERVAL which is used
to set the default interval, making it configurable for the user.
This makes \watch the first command which has a user configurable
default setting.

Author: Daniel Gustafsson <daniel(at)yesql(dot)se>
Reviewed-by: Heikki Linnakangas <hlinnaka(at)iki(dot)fi>
Reviewed-by: Michael Paquier <michael(at)paquier(dot)xyz>
Reviewed-by: Kirill Reshke <reshkekirill(at)gmail(dot)com>
Reviewed-by: Masahiro Ikeda <ikedamsh(at)oss(dot)nttdata(dot)com>
Reviewed-by: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>
Reviewed-by: Greg Sabino Mullane <htamfids(at)gmail(dot)com>
Reviewed-by: Ashutosh Bapat <ashutosh(dot)bapat(dot)oss(at)gmail(dot)com>
Discussion: https://postgr.es/m/B2FD26B4-8F64-4552-A603-5CC3DF1C7103@yesql.se

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/1a759c83278fcdae11ee5da8318b646b9d47129c

Modified Files
--------------
doc/src/sgml/ref/psql-ref.sgml | 13 ++++++++
src/bin/psql/command.c | 6 ++--
src/bin/psql/help.c | 2 ++
src/bin/psql/settings.h | 7 +++++
src/bin/psql/startup.c | 18 +++++++++++
src/bin/psql/t/001_basic.pl | 24 +++++++++++++++
src/bin/psql/variables.c | 70 ++++++++++++++++++++++++++++++++++++++++++
src/bin/psql/variables.h | 3 ++
8 files changed, 141 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Álvaro Herrera 2025-03-25 17:27:57 Re: Squash constant lists in query jumbling by default
Previous Message Tom Lane 2025-03-25 16:53:13 Re: Squash constant lists in query jumbling by default