[COMMITTERS] pgsql: Add psql variables showing server version and psql version.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема [COMMITTERS] pgsql: Add psql variables showing server version and psql version.
Дата
Msg-id E1dpcMs-000854-Ik@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Add psql variables showing server version and psql version.

We already had a psql variable VERSION that shows the verbose form of
psql's own version.  Add VERSION_NAME to show the short form (e.g.,
"11devel") and VERSION_NUM to show the numeric form (e.g., 110000).
Also add SERVER_VERSION_NAME and SERVER_VERSION_NUM to show the short and
numeric forms of the server's version.  (We'd probably add SERVER_VERSION
with the verbose string if it were readily available; but adding another
network round trip to get it seems too expensive.)

The numeric forms, in particular, are expected to be useful for scripting
purposes, now that psql can do conditional tests.

Back-patch of commit 9ae9d8c1549c384dbdb8363e1d932b7311d25c56.

Fabien Coelho, reviewed by Pavel Stehule

Discussion: https://postgr.es/m/alpine.DEB.2.20.1704020917220.4632@lancre

Branch
------
REL_10_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/a6c678f018d3a30a88440d3c20cf8e7cd6592a32

Modified Files
--------------
doc/src/sgml/ref/psql-ref.sgml | 24 ++++++++++++++++++++++--
src/bin/psql/command.c         | 19 +++++++++++++++++++
src/bin/psql/help.c            |  7 ++++++-
src/bin/psql/startup.c         |  3 +++
4 files changed, 50 insertions(+), 3 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: [COMMITTERS] pgsql: Escape < and & in SGML
Следующее
От: Peter Eisentraut
Дата:
Сообщение: [COMMITTERS] pgsql: doc: Make function synopsis formatting more uniform