|
1 |
| -<!-- $PostgreSQL: pgsql/doc/src/sgml/plpython.sgml,v 1.49 2010/03/29 21:35:59 petere Exp $ --> |
| 1 | +<!-- $PostgreSQL: pgsql/doc/src/sgml/plpython.sgml,v 1.50 2010/07/06 21:37:31 petere Exp $ --> |
2 | 2 |
|
3 | 3 | <chapter id="plpython">
|
4 | 4 | <title>PL/Python - Python Procedural Language</title>
|
|
152 | 152 | New In Python 3.0</ulink> for more information about porting to
|
153 | 153 | Python 3.
|
154 | 154 | </para>
|
| 155 | + |
| 156 | + <para> |
| 157 | + On most (possibly all) platforms, it is not possible to use |
| 158 | + PL/Python based on Python 2 and PL/Python based on Python 3 in the |
| 159 | + same session, because the symbols in the dynamic modules will |
| 160 | + clash, which will result in crashes of the PostgreSQL server |
| 161 | + process. It is possible, however, to use both PL/Python variants |
| 162 | + in the same database, from separate sessions. |
| 163 | + </para> |
155 | 164 | </sect1>
|
156 | 165 |
|
157 | 166 | <sect1 id="plpython-funcs">
|
|