diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-09-13 10:10:34 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-09-13 10:10:34 -0400 |
commit | 089880ba9af5f95e1a3b050874a90dbe5c33fd61 (patch) | |
tree | 09b0ba0ca296091338210464f91a59ec9b30cf65 | |
parent | 82e367ddbfdf798ea8a30da15db3984017277342 (diff) | |
download | postgresql-089880ba9af5f95e1a3b050874a90dbe5c33fd61.tar.gz postgresql-089880ba9af5f95e1a3b050874a90dbe5c33fd61.zip |
doc: Remove incorrect SCRAM protocol documentation
The documentation claimed that one should send
"pg_same_as_startup_message" as the user name in the SCRAM messages, but
this did not match the actual implementation, so remove it.
-rw-r--r-- | doc/src/sgml/protocol.sgml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index 76d1c13cc44..526e8011dee 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -1529,9 +1529,7 @@ that the client sends in the <structname>client-first-message</>. The user name that was already sent in the startup message is used instead. <productname>PostgreSQL</> supports multiple character encodings, while SCRAM dictates UTF-8 to be used for the user name, so it might be impossible to -represent the PostgreSQL user name in UTF-8. To avoid confusion, the client -should use <literal>pg_same_as_startup_message</literal> as the user name in the -<structname>client-first-message</>. +represent the PostgreSQL user name in UTF-8. </para> <para> |