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(-) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
