1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-23 03:21:12 +03:00

Doc: add XML ID attributes to <sectN> and <varlistentry> tags.

This doesn't have any external effect at the moment, but it
will allow adding useful link-discoverability features later.

Brar Piening, reviewed by Karl Pinc.

Discussion: https://postgr.es/m/CAB8KJ=jpuQU9QJe4+RgWENrK5g9jhoysMw2nvTN_esoOU0=a_w@mail.gmail.com
This commit is contained in:
Tom Lane
2023-01-09 15:08:24 -05:00
parent 38d81760c4
commit 78ee60ed84
85 changed files with 1372 additions and 1372 deletions

View File

@ -153,7 +153,7 @@ $$ LANGUAGE plpython3u;
below.
</para>
<sect2>
<sect2 id="plpython-data-type-mapping">
<title>Data Type Mapping</title>
<para>
When a PL/Python function is called, its arguments are converted from
@ -269,7 +269,7 @@ $$ LANGUAGE plpython3u;
</para>
</sect2>
<sect2>
<sect2 id="plpython-data-null">
<title>Null, None</title>
<para>
If an SQL null value<indexterm><primary>null value</primary><secondary
@ -369,7 +369,7 @@ SELECT return_str_arr();
</para>
</sect2>
<sect2>
<sect2 id="plpython-data-composite-types">
<title>Composite Types</title>
<para>
Composite-type arguments are passed to the function as Python mappings. The
@ -516,7 +516,7 @@ CALL python_triple(5, 10);
</para>
</sect2>
<sect2>
<sect2 id="plpython-data-set-returning-funcs">
<title>Set-Returning Functions</title>
<para>
A <application>PL/Python</application> function can also return sets of
@ -779,7 +779,7 @@ $$ LANGUAGE plpython3u;
<literal>plpy.<replaceable>foo</replaceable></literal>.
</para>
<sect2>
<sect2 id="plpython-database-access-funcs">
<title>Database Access Functions</title>
<para>
@ -1115,7 +1115,7 @@ $$ LANGUAGE plpython3u;
the form of explicit subtransactions.
</para>
<sect2>
<sect2 id="plpython-subtransaction-context-managers">
<title>Subtransaction Context Managers</title>
<para>