Skip to content

Commit bbe6d23

Browse files
committed
dblink docs: fix typo to use "connname" (3 n's), not "conname"
This makes the parameter names match the documented prototype names. Report by Erwin Brandstetter Backpatch through 9.0
1 parent 23ddcd7 commit bbe6d23

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

doc/src/sgml/dblink.sgml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dblink_connect(text connname, text connstr) returns text
6464

6565
<variablelist>
6666
<varlistentry>
67-
<term><parameter>conname</parameter></term>
67+
<term><parameter>connname</parameter></term>
6868
<listitem>
6969
<para>
7070
The name to use for this connection; if omitted, an unnamed
@@ -265,7 +265,7 @@ dblink_disconnect(text connname) returns text
265265

266266
<variablelist>
267267
<varlistentry>
268-
<term><parameter>conname</parameter></term>
268+
<term><parameter>connname</parameter></term>
269269
<listitem>
270270
<para>
271271
The name of a named connection to be closed.
@@ -344,7 +344,7 @@ dblink(text sql [, bool fail_on_error]) returns setof record
344344

345345
<variablelist>
346346
<varlistentry>
347-
<term><parameter>conname</parameter></term>
347+
<term><parameter>connname</parameter></term>
348348
<listitem>
349349
<para>
350350
Name of the connection to use; omit this parameter to use the
@@ -567,7 +567,7 @@ dblink_exec(text sql [, bool fail_on_error]) returns text
567567

568568
<variablelist>
569569
<varlistentry>
570-
<term><parameter>conname</parameter></term>
570+
<term><parameter>connname</parameter></term>
571571
<listitem>
572572
<para>
573573
Name of the connection to use; omit this parameter to use the
@@ -692,7 +692,7 @@ dblink_open(text connname, text cursorname, text sql [, bool fail_on_error]) ret
692692

693693
<variablelist>
694694
<varlistentry>
695-
<term><parameter>conname</parameter></term>
695+
<term><parameter>connname</parameter></term>
696696
<listitem>
697697
<para>
698698
Name of the connection to use; omit this parameter to use the
@@ -811,7 +811,7 @@ dblink_fetch(text connname, text cursorname, int howmany [, bool fail_on_error])
811811

812812
<variablelist>
813813
<varlistentry>
814-
<term><parameter>conname</parameter></term>
814+
<term><parameter>connname</parameter></term>
815815
<listitem>
816816
<para>
817817
Name of the connection to use; omit this parameter to use the
@@ -960,7 +960,7 @@ dblink_close(text connname, text cursorname [, bool fail_on_error]) returns text
960960

961961
<variablelist>
962962
<varlistentry>
963-
<term><parameter>conname</parameter></term>
963+
<term><parameter>connname</parameter></term>
964964
<listitem>
965965
<para>
966966
Name of the connection to use; omit this parameter to use the
@@ -1107,7 +1107,7 @@ dblink_error_message(text connname) returns text
11071107

11081108
<variablelist>
11091109
<varlistentry>
1110-
<term><parameter>conname</parameter></term>
1110+
<term><parameter>connname</parameter></term>
11111111
<listitem>
11121112
<para>
11131113
Name of the connection to use.
@@ -1176,7 +1176,7 @@ dblink_send_query(text connname, text sql) returns int
11761176

11771177
<variablelist>
11781178
<varlistentry>
1179-
<term><parameter>conname</parameter></term>
1179+
<term><parameter>connname</parameter></term>
11801180
<listitem>
11811181
<para>
11821182
Name of the connection to use.
@@ -1243,7 +1243,7 @@ dblink_is_busy(text connname) returns int
12431243

12441244
<variablelist>
12451245
<varlistentry>
1246-
<term><parameter>conname</parameter></term>
1246+
<term><parameter>connname</parameter></term>
12471247
<listitem>
12481248
<para>
12491249
Name of the connection to check.
@@ -1308,7 +1308,7 @@ dblink_get_notify(text connname) returns setof (notify_name text, be_pid int, ex
13081308

13091309
<variablelist>
13101310
<varlistentry>
1311-
<term><parameter>conname</parameter></term>
1311+
<term><parameter>connname</parameter></term>
13121312
<listitem>
13131313
<para>
13141314
The name of a named connection to get notifications on.
@@ -1383,7 +1383,7 @@ dblink_get_result(text connname [, bool fail_on_error]) returns setof record
13831383

13841384
<variablelist>
13851385
<varlistentry>
1386-
<term><parameter>conname</parameter></term>
1386+
<term><parameter>connname</parameter></term>
13871387
<listitem>
13881388
<para>
13891389
Name of the connection to use.
@@ -1534,7 +1534,7 @@ dblink_cancel_query(text connname) returns text
15341534

15351535
<variablelist>
15361536
<varlistentry>
1537-
<term><parameter>conname</parameter></term>
1537+
<term><parameter>connname</parameter></term>
15381538
<listitem>
15391539
<para>
15401540
Name of the connection to use.

0 commit comments

Comments
 (0)