dblink docs: fix typo to use "connname" (3 n's), not "conname"
authorBruce Momjian
Thu, 27 Aug 2015 17:43:10 +0000 (13:43 -0400)
committerBruce Momjian
Thu, 27 Aug 2015 17:43:10 +0000 (13:43 -0400)
This makes the parameter names match the documented prototype names.

Report by Erwin Brandstetter

Backpatch through 9.0

doc/src/sgml/dblink.sgml

index a26e3786782bd85b0873766a1a6576dbc35d4b94..b14568273866f08d529ebeda0b808c0b9d17a61b 100644 (file)
@@ -69,7 +69,7 @@ dblink_connect(text connname, text connstr) returns text
 
    
     
-     conname
+     connname
      
       
        The name to use for this connection; if omitted, an unnamed
@@ -276,7 +276,7 @@ dblink_disconnect(text connname) returns text
 
    
     
-     conname
+     connname
      
       
        The name of a named connection to be closed.
@@ -359,7 +359,7 @@ dblink(text sql [, bool fail_on_error]) returns setof record
 
    
     
-     conname
+     connname
      
       
        Name of the connection to use; omit this parameter to use the
@@ -577,7 +577,7 @@ dblink_exec(text sql [, bool fail_on_error]) returns text
 
    
     
-     conname
+     connname
      
       
        Name of the connection to use; omit this parameter to use the
@@ -706,7 +706,7 @@ dblink_open(text connname, text cursorname, text sql [, bool fail_on_error]) ret
 
    
     
-     conname
+     connname
      
       
        Name of the connection to use; omit this parameter to use the
@@ -829,7 +829,7 @@ dblink_fetch(text connname, text cursorname, int howmany [, bool fail_on_error])
 
    
     
-     conname
+     connname
      
       
        Name of the connection to use; omit this parameter to use the
@@ -982,7 +982,7 @@ dblink_close(text connname, text cursorname [, bool fail_on_error]) returns text
 
    
     
-     conname
+     connname
      
       
        Name of the connection to use; omit this parameter to use the
@@ -1137,7 +1137,7 @@ dblink_error_message(text connname) returns text
 
    
     
-     conname
+     connname
      
       
        Name of the connection to use.
@@ -1210,7 +1210,7 @@ dblink_send_query(text connname, text sql) returns int
 
    
     
-     conname
+     connname
      
       
        Name of the connection to use.
@@ -1281,7 +1281,7 @@ dblink_is_busy(text connname) returns int
 
    
     
-     conname
+     connname
      
       
        Name of the connection to check.
@@ -1350,7 +1350,7 @@ dblink_get_notify(text connname) returns setof (notify_name text, be_pid int, ex
 
    
     
-     conname
+     connname
      
       
        The name of a named connection to get notifications on.
@@ -1429,7 +1429,7 @@ dblink_get_result(text connname [, bool fail_on_error]) returns setof record
 
    
     
-     conname
+     connname
      
       
        Name of the connection to use.
@@ -1596,7 +1596,7 @@ dblink_cancel_query(text connname) returns text
 
    
     
-     conname
+     connname
      
       
        Name of the connection to use.