diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-10-28 10:00:28 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-10-28 10:00:28 -0400 |
commit | 438df52df9bf7ade0c042e73e9c83c0a58adb5bb (patch) | |
tree | 9b4d2bc1b44e0548aeb40f179e7aadbedbe0b332 | |
parent | c50b7c09d852b6dc292bf24c72a0ffcac6cb2cab (diff) | |
download | postgresql-438df52df9bf7ade0c042e73e9c83c0a58adb5bb.tar.gz postgresql-438df52df9bf7ade0c042e73e9c83c0a58adb5bb.zip |
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.
-rw-r--r-- | doc/src/sgml/lobj.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml index 05a93109911..cdeafdddfe0 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 <function>lo_creat</function><indexterm><primary>lo_creat</></>, - <function>lo_create</function><indexterm><primary>lo_create</></>, + <function>lo_create</function>, <function>lo_unlink</function><indexterm><primary>lo_unlink</></>, <function>lo_import</function><indexterm><primary>lo_import</></>, and <function>lo_export</function><indexterm><primary>lo_export</></>. |