Mention actual function names in documentation of how to pass binary
authorBruce Momjian
Fri, 27 Jun 2008 02:44:31 +0000 (02:44 +0000)
committerBruce Momjian
Fri, 27 Jun 2008 02:44:31 +0000 (02:44 +0000)
values to libpq.

doc/src/sgml/libpq.sgml

index 629e501b8ac7341d83679211b577da9fb97ef65a..deb052e5c49421d262aa81be20fae0728beee3e9 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  <application>libpq</application> - C Library
@@ -1403,7 +1403,9 @@ PGresult *PQexecParams(PGconn *conn,
             For example, integers must be passed in network byte
             order.  Passing numeric values requires
             knowledge of the server storage format, as implemented
-            in src/backend/utils/adt/numeric.c.
+            in
+            src/backend/utils/adt/numeric.c::numeric_send() and
+            src/backend/utils/adt/numeric.c::numeric_recv().