summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorDaniel Gustafsson2022-09-30 10:03:48 +0000
committerDaniel Gustafsson2022-09-30 10:03:48 +0000
commitf84e2ed246d20c5bd772f1d1c1fba85faf5a144e (patch)
tree5ef41506b76ae5587b0ab6c3ddc2549abd346faf /doc/src
parent86f2ee2e2731cda414b9c29b6ace82e2a8de536d (diff)
doc: Fix PQsslAttribute docs for compression
The compression parameter to PQsslAttribute has never returned the compression method used, it has always returned "on" or "off since it was added in commit 91fa7b4719ac. Backpatch through v10. Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://postgr.es/m/B9EC60EC-F665-47E8-A221-398C76E382C9@yesql.se Backpatch-through: v10
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/libpq.sgml4
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml
index 4c16f75b350..bc68c4f616f 100644
--- a/doc/src/sgml/libpq.sgml
+++ b/doc/src/sgml/libpq.sgml
@@ -2254,9 +2254,7 @@ const char *PQsslAttribute(const PGconn *conn, const char *attribute_name);
<term><literal>compression</literal></term>
<listitem>
<para>
- If SSL compression is in use, returns the name of the compression
- algorithm, or "on" if compression is used but the algorithm is
- not known. If compression is not in use, returns "off".
+ Returns "on" if SSL compression is in use, else it returns "off".
</para>
</listitem>
</varlistentry>