aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2011-03-05 15:13:15 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2011-03-05 15:13:15 -0500
commitbfd7f8cbb2ddf8c48ac310a80d33c951087c12c4 (patch)
tree373e968b40a4cfa00829d3d536783b3f00b51dd3 /doc/src
parentba0c93a0f46ca70cae47a8817067c1e98482979f (diff)
downloadpostgresql-bfd7f8cbb2ddf8c48ac310a80d33c951087c12c4.tar.gz
postgresql-bfd7f8cbb2ddf8c48ac310a80d33c951087c12c4.zip
Make plpythonu language use plpython2 shared library directly.
The original scheme for this was to symlink plpython.$DLSUFFIX to plpython2.$DLSUFFIX, but that doesn't work on Windows, and only accidentally failed to fail because of the way that CREATE LANGUAGE created or didn't create new C functions. My changes of yesterday exposed the weakness of that approach. To fix, get rid of the symlink and make pg_pltemplate show what's really going on.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/plpython.sgml5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml
index 0aa5159e2b7..ba785e9a531 100644
--- a/doc/src/sgml/plpython.sgml
+++ b/doc/src/sgml/plpython.sgml
@@ -148,8 +148,9 @@
<listitem>
<para>
Daredevils, who want to build a Python-3-only operating system
- environment, can change the build scripts to
- make <literal>plpythonu</literal> be equivalent
+ environment, can change the contents of
+ <link linkend="catalog-pg-pltemplate"><structname>pg_pltemplate</structname></link>
+ to make <literal>plpythonu</literal> be equivalent
to <literal>plpython3u</literal>, keeping in mind that this
would make their installation incompatible with most of the rest
of the world.