diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-09-19 13:18:53 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-09-19 13:18:53 +0900 |
commit | bec847d9e946ab6e05a2884e524c3cc8c52feebb (patch) | |
tree | a0e6bb6a08acdd717b3ee308b02a575b90bc8cd3 | |
parent | 82fa3ff867219a212a467317a77011df29cb5903 (diff) | |
download | postgresql-bec847d9e946ab6e05a2884e524c3cc8c52feebb.tar.gz postgresql-bec847d9e946ab6e05a2884e524c3cc8c52feebb.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 ede3c557138..c9d33fc19a8 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -6512,7 +6512,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 |