diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-04-08 11:36:05 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-04-08 11:36:05 -0400 |
commit | dca30da3433c40b5f92f1704c496cda052decef9 (patch) | |
tree | 4bb908fd242e5ac0c3eb1fe9c9fff2fa9030f9ae /doc/src/sgml/plpython.sgml | |
parent | 8ad58279fa75636b776e4c648e1ffc7079a2c7d9 (diff) |
Avoid extra whitespace in the arguments of <indexterm>.
As noted by Thom Brown, this confuses the DocBook index processor; it
fails to merge entries that differ only in whitespace, and sorts them
unexpectedly as well. Seems like a toolchain bug, but I'm not going to
hold my breath waiting for a fix.
Note: easiest way to find these is to look for double spaces in HTML.index.
Diffstat (limited to 'doc/src/sgml/plpython.sgml')
-rw-r--r-- | doc/src/sgml/plpython.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml index d39158ac12e..14f00d8236f 100644 --- a/doc/src/sgml/plpython.sgml +++ b/doc/src/sgml/plpython.sgml @@ -398,7 +398,7 @@ $$ LANGUAGE plpythonu; <title>Null, None</title> <para> If an SQL null value<indexterm><primary>null value</primary><secondary - sortas="PL/Python">PL/Python</secondary></indexterm> is passed to a + sortas="PL/Python">in PL/Python</secondary></indexterm> is passed to a function, the argument value will appear as <symbol>None</symbol> in Python. The above function definition will return the wrong answer for null inputs. We could add <literal>STRICT</literal> to the function definition @@ -716,8 +716,8 @@ SELECT * FROM multiout_simple_setof(3); data between function calls. This variable is private static data. The global dictionary <varname>GD</varname> is public data, available to all Python functions within a session. Use with - care.<indexterm><primary>global data</><secondary>in - PL/Python</></indexterm> + care.<indexterm><primary>global data</> + <secondary>in PL/Python</></indexterm> </para> <para> |