Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 06d47f6

Browse files
committed
docs: clarify plpython SD and GD dictionary behavior
Reported-by: Adam Bielański Discussion: https://postgr.es/m/153484305538.1370.7605856225879294548@wrigleys.postgresql.org Backpatch-through: 9.3
1 parent 5ec70a9 commit 06d47f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/plpython.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -734,9 +734,9 @@ SELECT * FROM multiout_simple_setof(3);
734734
<title>Sharing Data</title>
735735
<para>
736736
The global dictionary <varname>SD</varname> is available to store
737-
data between function calls. This variable is private static data.
737+
private data between repeated calls to the same function.
738738
The global dictionary <varname>GD</varname> is public data,
739-
available to all Python functions within a session. Use with
739+
that is available to all Python functions within a session; use with
740740
care.<indexterm><primary>global data</>
741741
<secondary>in PL/Python</></indexterm>
742742
</para>

0 commit comments

Comments
 (0)