target_session_attrs=read-only
is only supported on libpq >= 14
#3699
Labels
docs
Only related to documentation
Problem
The docs instruct to add
target_session_attrs=read-only
to thedb-uri
, but this will fail on an instance with libpq < 14:(uses the ubuntu-aarch64 release)
This happens because
target_session_attrs
only acceptsread-only
starting from libpq 14.target_session_attrs
only supports read-write on libpq13, see https://www.postgresql.org/docs/13/libpq-connect.html#LIBPQ-CONNECT-TARGET-SESSION-ATTRS.Solution
Warn about this limitation on the docs.
The text was updated successfully, but these errors were encountered: