From 438df52df9bf7ade0c042e73e9c83c0a58adb5bb Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 28 Oct 2013 10:00:28 -0400 Subject: [PATCH] Suppress duplicate-index-entry warning introduced by previous commit. We don't need two index entries for lo_create pointing at the same section. It's a bit pedantic for the toolchain to warn about this, but warn it does. --- doc/src/sgml/lobj.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml index 05a9310991..cdeafdddfe 100644 --- a/doc/src/sgml/lobj.sgml +++ b/doc/src/sgml/lobj.sgml @@ -600,7 +600,7 @@ int lo_unlink(PGconn *conn, Oid lobjId); client-side functions are simply interfaces to the equivalent server-side functions. The ones just as convenient to call via SQL commands are lo_creatlo_creat, - lo_createlo_create, + lo_create, lo_unlinklo_unlink, lo_importlo_import, and lo_exportlo_export.