diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-09-19 13:19:04 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-09-19 13:19:04 +0900 |
commit | 3153328fa918e57192bc72fe9dd0da07836da070 (patch) | |
tree | 4afe99f9e1a069df5143e084cbc75a649b99aba2 | |
parent | 1831c6b1841c7237eeb426556c5cae8aaa64c8e1 (diff) | |
download | postgresql-3153328fa918e57192bc72fe9dd0da07836da070.tar.gz postgresql-3153328fa918e57192bc72fe9dd0da07836da070.zip |
Doc: Fix incorrect mention to connection_object in CONNECT command of ECPG
This fixes an inconsistency with this parameter name not listed in the
command synopsis, and connection_name is the parameter name more
commonly used in the docs for ECPG commands.
Reported-by: Yusuke Egashita
Discussion: https://postgr.es/m/156870956796.1259.11456186889345212399@wrigleys.postgresql.org
Backpatch-through: 9.4
-rw-r--r-- | doc/src/sgml/ecpg.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 7561ba07cd8..9aa0343eef7 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -6471,7 +6471,7 @@ DATABASE <replaceable>connection_target</replaceable> </varlistentry> <varlistentry> - <term><replaceable class="parameter">connection_object</replaceable></term> + <term><replaceable class="parameter">connection_name</replaceable></term> <listitem> <para> An optional identifier for the connection, so that it can be |