diff options
author | Álvaro Herrera <alvherre@alvh.no-ip.org> | 2025-02-22 10:05:26 +0100 |
---|---|---|
committer | Álvaro Herrera <alvherre@alvh.no-ip.org> | 2025-02-22 10:05:26 +0100 |
commit | bba2fbc6238b2a0a7f348fbbb5c31ffa7623bc39 (patch) | |
tree | af7071179ac28026e9d61c048ba1c3f303b7280c /doc/src | |
parent | 4f1b6e5bb4fe9bc74395d30d689b28e9cda654a5 (diff) | |
download | postgresql-bba2fbc6238b2a0a7f348fbbb5c31ffa7623bc39.tar.gz postgresql-bba2fbc6238b2a0a7f348fbbb5c31ffa7623bc39.zip |
Change \conninfo to use tabular format
(Initially the proposal was to keep \conninfo alone and add this feature
as \conninfo+, but we decided against keeping the original.)
Also display more fields than before, though not as many as were
suggested during the discussion. In particular, we don't show 'role'
nor 'session authorization', for both which a case can probably be made.
These can be added as followup commits, if we agree to it.
Some (most?) reviewers actually reviewed rather different versions of
the patch and do not necessarily endorse the current one.
Co-authored-by: Maiquel Grassi <grassi@hotmail.com.br>
Co-authored-by: Hunaid Sohail <hunaidpgml@gmail.com>
Reviewed-by: Nathan Bossart <nathandbossart@gmail.com>
Reviewed-by: Peter Eisentraut <peter@eisentraut.org>
Reviewed-by: Sami Imseih <simseih@amazon.com>
Reviewed-by: David G. Johnston <david.g.johnston@gmail.com>
Reviewed-by: Jim Jones <jim.jones@uni-muenster.de>
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Reviewed-by: Pavel Luzanov <p.luzanov@postgrespro.ru>
Reviewed-by: Dean Rasheed <dean.a.rasheed@gmail.com>
Reviewed-by: Erik Wienhold <ewie@ewie.name>
Discussion: https://postgr.es/m/CP8P284MB24965CB63DAC00FC0EA4A475EC462@CP8P284MB2496.BRAP284.PROD.OUTLOOK.COM
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index a8a0b694bbf..3edbd65e46c 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1070,9 +1070,10 @@ INSERT INTO tbls1 VALUES ($1, $2) \parse stmt1 <varlistentry id="app-psql-meta-command-conninfo"> <term><literal>\conninfo</literal></term> <listitem> - <para> - Outputs information about the current database connection. - </para> + <para> + Outputs information about the current database connection, + including TLS-related information if TLS is in use. + </para> </listitem> </varlistentry> |