diff options
author | Bruce Momjian | 2015-08-27 17:43:10 +0000 |
---|---|---|
committer | Bruce Momjian | 2015-08-27 17:43:10 +0000 |
commit | bbe6d231a0819915081e4693eaa02a31ac2fef6c (patch) | |
tree | 45c599ba8d60dbec4a24f69856c1541625130953 | |
parent | 23ddcd77b72bdbec4f8e5fb618febefa1fea4d2d (diff) |
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
-rw-r--r-- | doc/src/sgml/dblink.sgml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/src/sgml/dblink.sgml b/doc/src/sgml/dblink.sgml index 3530fc16b51..aa46b40a642 100644 --- a/doc/src/sgml/dblink.sgml +++ b/doc/src/sgml/dblink.sgml @@ -64,7 +64,7 @@ dblink_connect(text connname, text connstr) returns text <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> The name to use for this connection; if omitted, an unnamed @@ -265,7 +265,7 @@ dblink_disconnect(text connname) returns text <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> The name of a named connection to be closed. @@ -344,7 +344,7 @@ dblink(text sql [, bool fail_on_error]) returns setof record <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> 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 <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> 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 <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> 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]) <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> 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 <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> Name of the connection to use; omit this parameter to use the @@ -1107,7 +1107,7 @@ dblink_error_message(text connname) returns text <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> Name of the connection to use. @@ -1176,7 +1176,7 @@ dblink_send_query(text connname, text sql) returns int <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> Name of the connection to use. @@ -1243,7 +1243,7 @@ dblink_is_busy(text connname) returns int <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> Name of the connection to check. @@ -1308,7 +1308,7 @@ dblink_get_notify(text connname) returns setof (notify_name text, be_pid int, ex <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> 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 <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> Name of the connection to use. @@ -1534,7 +1534,7 @@ dblink_cancel_query(text connname) returns text <variablelist> <varlistentry> - <term><parameter>conname</parameter></term> + <term><parameter>connname</parameter></term> <listitem> <para> Name of the connection to use. |