summaryrefslogtreecommitdiff
path: root/databases/postgresql13-plpython/DESCR
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2020-10-18 09:24:02 +0000
committeradam <adam@pkgsrc.org>2020-10-18 09:24:02 +0000
commitea5f7d2234235eb31891fbd66dff8a3d40ae07bd (patch)
treeb6fc055da0e3940fd753ba32b579400339cb83c9 /databases/postgresql13-plpython/DESCR
parent5356b71d623e6a9b52e045131f108b472bdd533a (diff)
downloadpkgsrc-ea5f7d2234235eb31891fbd66dff8a3d40ae07bd.tar.gz
postgresql13: added version 13.0
PostgreSQL 13 contains many new features and enhancements, including: * Space savings and performance gains from de-duplication of B-tree index entries * Improved performance for queries that use aggregates or partitioned tables * Better query planning when using extended statistics * Parallelized vacuuming of indexes * Incremental sorting
Diffstat (limited to 'databases/postgresql13-plpython/DESCR')
-rw-r--r--databases/postgresql13-plpython/DESCR9
1 files changed, 9 insertions, 0 deletions
diff --git a/databases/postgresql13-plpython/DESCR b/databases/postgresql13-plpython/DESCR
new file mode 100644
index 00000000000..142bb15309d
--- /dev/null
+++ b/databases/postgresql13-plpython/DESCR
@@ -0,0 +1,9 @@
+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/Python intepreter is a full Python interpreter.
+
+PL/Python is currently 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 named "plpythonu". The trusted variant
+plpython may become available again in future, if a new secure execution
+mechanism is developed in Python.