| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | pgsql-committers(at)postgresql(dot)org |
| Subject: | pgsql: Make plpythonu language use plpython2 shared library directly. |
| Date: | 2011-03-05 20:13:31 |
| Message-ID: | E1Pvxr1-00072E-My@gemulon.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
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.
Branch
------
master
Details
-------
http://git.postgresql.org/pg/commitdiff/bfd7f8cbb2ddf8c48ac310a80d33c951087c12c4
Modified Files
--------------
doc/src/sgml/plpython.sgml | 5 +++--
src/include/catalog/catversion.h | 2 +-
src/include/catalog/pg_pltemplate.h | 2 +-
src/pl/plpython/Makefile | 8 ++------
src/tools/msvc/Mkvcbuild.pm | 11 +++++++----
5 files changed, 14 insertions(+), 14 deletions(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2011-03-05 20:34:32 | pgsql: Adjust documentation about pg_pltemplate to reflect latest think |
| Previous Message | Tom Lane | 2011-03-05 19:03:22 | pgsql: Convert createlang/droplang to use CREATE/DROP EXTENSION. |