summaryrefslogtreecommitdiff
path: root/databases/postgresql74-plpython
diff options
context:
space:
mode:
authorjdolecek <jdolecek@pkgsrc.org>2004-10-10 17:53:49 +0000
committerjdolecek <jdolecek@pkgsrc.org>2004-10-10 17:53:49 +0000
commit325c14975aaa1fb823dbaefe159a5f54cc609c30 (patch)
treebc1afa681471723b890a724cdacdf95a0ba183b7 /databases/postgresql74-plpython
parent952893a257b19ad0ec13012a7985961ac0b2f267 (diff)
downloadpkgsrc-325c14975aaa1fb823dbaefe159a5f54cc609c30.tar.gz
want to describe PL/Python here, not PL/Perl
Diffstat (limited to 'databases/postgresql74-plpython')
-rw-r--r--databases/postgresql74-plpython/DESCR12
1 files changed, 8 insertions, 4 deletions
diff --git a/databases/postgresql74-plpython/DESCR b/databases/postgresql74-plpython/DESCR
index 9057591c0ba..de958f2112c 100644
--- a/databases/postgresql74-plpython/DESCR
+++ b/databases/postgresql74-plpython/DESCR
@@ -1,5 +1,9 @@
-PL/Perl allows you to write functions in the Perl programming language
+PL/Python allows you to write functions in the Python programming language
that may be used in SQL queries as if they were built into Postgres.
-The PL/Perl intepreter is a full Perl interpreter. However, certain
-operations have been disabled in order to maintain the security of the
-system.
+The PL/Python intepreter is a full Python interpreter.
+
+As of PostgreSQL 7.4, PL/Python is only available as an "untrusted"
+language (meaning it does not offer any way of restricting what
+users can do in it). It has therefore been renamed to plpythonu.
+The trusted variant plpython may become available again in future,
+if a new secure execution mechanism is developed in Python.