diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-09-19 13:19:00 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-09-19 13:19:00 +0900 |
commit | ae2d826922b745ea2c77c51019948ccf4309f50f (patch) | |
tree | a7a32ae2e5c1b651b5d6404fb9587791688da598 | |
parent | 62ed5e77f3dc6d8c65d917b60dc8512ddd6fd18e (diff) | |
download | postgresql-ae2d826922b745ea2c77c51019948ccf4309f50f.tar.gz postgresql-ae2d826922b745ea2c77c51019948ccf4309f50f.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 09017f1d9ed..38eaeb4e377 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 |