diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index e700782d3c..4fd94e324a 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -7040,9 +7040,8 @@ local0.* /var/log/postgresql
The name will be displayed in the pg_stat_activity view
and included in CSV log entries. It can also be included in regular
log entries via the parameter.
- Only printable ASCII characters may be used in the
- application_name value. Other characters will be
- replaced with question marks (?).
+ Non-ASCII characters used in the application_name
+ will be replaced with a hex escape.
@@ -8037,11 +8036,10 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
The name can be any string of less
than NAMEDATALEN characters (64 characters in a standard
- build). Only printable ASCII characters may be used in the
- cluster_name value. Other characters will be
- replaced with question marks (?). No name is shown
- if this parameter is set to the empty string '' (which is
- the default). This parameter can only be set at server start.
+ build). Non-ASCII characters used in the cluster_name
+ will be replaced with a hex escape. No name is shown if this parameter
+ is set to the empty string '' (which is the
+ default). This parameter can only be set at server start.
diff --git a/doc/src/sgml/postgres-fdw.sgml b/doc/src/sgml/postgres-fdw.sgml
index 5062d712e7..ddd93e315c 100644
--- a/doc/src/sgml/postgres-fdw.sgml
+++ b/doc/src/sgml/postgres-fdw.sgml
@@ -1068,8 +1068,7 @@ postgres=# SELECT postgres_fdw_disconnect_all();
it's passed to and used as application_name
in a foreign server, note that it will be truncated to less than
NAMEDATALEN characters and anything other than
- printable ASCII characters will be replaced with question
- marks (?).
+ printable ASCII characters will be replaced with a hex escape.
See for details.