You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/src/pl/plpython
Bruce Momjian afb17d912b > I've worked with the Pl/Python code in the past and will see about removing 23 years ago
..
Makefile Assorted fixes for Cygwin: 24 years ago
README Remove linking hacks now that dynloader is fixed. 25 years ago
TODO PL/Python should build portably now, if you can get over the fact that 25 years ago
error.expected Clean up plpython error reporting so that its regression test passes 24 years ago
feature.expected It may not be obvious to you, but the plpython regression tests 24 years ago
plpython.c > I've worked with the Pl/Python code in the past and will see about removing 23 years ago
plpython.h Make debug_ GUC varables output DEBUG1 rather than LOG, and mention in 23 years ago
plpython_depopulate.sql Add plpython code. 25 years ago
plpython_deschema.sql Add plpython code. 25 years ago
plpython_drop.sql Add plpython code. 25 years ago
plpython_error.sql > I've worked with the Pl/Python code in the past and will see about removing 23 years ago
plpython_function.sql > I've worked with the Pl/Python code in the past and will see about removing 23 years ago
plpython_populate.sql Add plpython code. 25 years ago
plpython_schema.sql I have attached two patches as per: 24 years ago
plpython_setof.sql Add plpython code. 25 years ago
plpython_test.sql PL/Python should build portably now, if you can get over the fact that 25 years ago
test.sh Clean up plpython error reporting so that its regression test passes 24 years ago

README

PL/Python - Python Procedural Language for PostgreSQL
-----------------------------------------------------
$Id: README,v 1.2 2001/05/14 22:06:50 petere Exp $

Installation:

configure --with-python
cd src/pl/plpython
gmake
gmake install

Test:

# have postmaster running...
gmake installcheck

Enable language:

createlang plpython dbname


Note that PL/Python is currently not built automatically because the
code is new and there are some portability issues.

A default Python installation does not provide a shared libpython
library. This is not a problem on many platforms (although it makes
things less efficient), but on some platforms (especially HP-UX) the
link will fail outright.

To create a shared libpython, see this web page for hints:

http://www.python.org/cgi-bin/faqw.py?req=show&file=faq03.030.htp

Place the resulting library in the same directory as the existing
static libpythonX.Y.a and relink plpython.


Further documentation is available in the PostgreSQL Programmer's
Guide.