diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-03-28 08:32:43 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-03-28 08:37:18 -0400 |
commit | 3f44e3db72ad4097aae078c075a9b3cb3d6b761b (patch) | |
tree | 807ec18db75caef36a5a218fe778f53d03e698e0 /contrib/jsonb_plpython/jsonb_plpython2u.control | |
parent | a437551a228a5099c305d1376188d6926c043724 (diff) | |
download | postgresql-3f44e3db72ad4097aae078c075a9b3cb3d6b761b.tar.gz postgresql-3f44e3db72ad4097aae078c075a9b3cb3d6b761b.zip |
Transforms for jsonb to PL/Python
Add a new contrib module jsonb_plpython that provide a transform between
jsonb and PL/Python. jsonb values are converted to appropriate Python
types such as dicts and lists, and vice versa.
Author: Anthony Bykov <a.bykov@postgrespro.ru>
Reviewed-by: Aleksander Alekseev <a.alekseev@postgrespro.ru>
Reviewed-by: Nikita Glukhov <n.gluhov@postgrespro.ru>
Diffstat (limited to 'contrib/jsonb_plpython/jsonb_plpython2u.control')
-rw-r--r-- | contrib/jsonb_plpython/jsonb_plpython2u.control | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/jsonb_plpython/jsonb_plpython2u.control b/contrib/jsonb_plpython/jsonb_plpython2u.control new file mode 100644 index 00000000000..d26368316b6 --- /dev/null +++ b/contrib/jsonb_plpython/jsonb_plpython2u.control @@ -0,0 +1,6 @@ +# jsonb_plpython2u extension +comment = 'transform between jsonb and plpython2u' +default_version = '1.0' +module_pathname = '$libdir/jsonb_plpython2' +relocatable = true +requires = 'plpython2u' |