diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2004-10-10 12:56:31 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2004-10-10 12:56:31 +0000 |
commit | 674f73217575dbd37fbba453f64ee00a9d2e1c79 (patch) | |
tree | b06790d367c10b1a0f503de2ee92ffb3c1a20d8e /databases/postgresql74-plpython | |
parent | d6e77b6158e7506dfb85db0a3f5eb50d0fd62b9f (diff) | |
download | pkgsrc-674f73217575dbd37fbba453f64ee00a9d2e1c79.tar.gz |
suggest simplier way to enable PL/Python, using program createlang
Diffstat (limited to 'databases/postgresql74-plpython')
-rw-r--r-- | databases/postgresql74-plpython/MESSAGE | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/databases/postgresql74-plpython/MESSAGE b/databases/postgresql74-plpython/MESSAGE index c1a3dee898c..1a9562e28f8 100644 --- a/databases/postgresql74-plpython/MESSAGE +++ b/databases/postgresql74-plpython/MESSAGE @@ -1,5 +1,5 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.1.1.1 2004/10/10 12:38:21 jdolecek Exp $ +$NetBSD: MESSAGE,v 1.2 2004/10/10 12:56:31 jdolecek Exp $ Please see the PL/Python section of the PostgreSQL Programmer's Guide (databases/postgresql-docs) for information on programming with @@ -10,11 +10,8 @@ offer any way of restricting what users can do in it. Any DB user with access to PL/Python can run arbitrary Python code under privileges of the PostgreSQL server process. -To configure PostgreSQL to enable PL/Python, run this as DBA: +To enable PL/Python for database <dbname>, run following: -CREATE FUNCTION plpython_call_handler() RETURNS language_handler AS - '$libdir/plpython' LANGUAGE C; - -CREATE PROCEDURAL LANGUAGE plpythonu HANDLER plpython_call_handler; +createlang plpythonu <dbname> =========================================================================== |