mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
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.
This commit is contained in:
@ -3188,9 +3188,12 @@ char * SPI_getnspname(Relation <parameter>rel</parameter>)
|
||||
<title>Memory Management</title>
|
||||
|
||||
<para>
|
||||
<indexterm>
|
||||
<primary>memory context</primary>
|
||||
<secondary>in SPI</secondary>
|
||||
</indexterm>
|
||||
<productname>PostgreSQL</productname> allocates memory within
|
||||
<firstterm>memory contexts</firstterm><indexterm><primary>memory
|
||||
context</primary><secondary>in SPI</secondary></indexterm>, which provide a convenient method of
|
||||
<firstterm>memory contexts</firstterm>, which provide a convenient method of
|
||||
managing allocations made in many different places that need to
|
||||
live for differing amounts of time. Destroying a context releases
|
||||
all the memory that was allocated in it. Thus, it is not necessary
|
||||
|
Reference in New Issue
Block a user