diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-04-03 09:47:18 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-04-03 09:47:18 -0400 |
commit | 341e1661805879db958dde0a9ed1dc44b1bb10c3 (patch) | |
tree | f78b33ca09f89599112fc81637c4fccf32cf12d4 /contrib/jsonb_plperl/jsonb_plperlu.control | |
parent | a08dc711952081d63577fc182fcf955958f70add (diff) | |
download | postgresql-341e1661805879db958dde0a9ed1dc44b1bb10c3.tar.gz postgresql-341e1661805879db958dde0a9ed1dc44b1bb10c3.zip |
Transforms for jsonb to PL/Perl
Add a new contrib module jsonb_plperl that provides a transform between
jsonb and PL/Perl. jsonb values are converted to appropriate Perl types
such as arrays and hashes, and vice versa.
Author: Anthony Bykov <a.bykov@postgrespro.ru>
Reviewed-by: Pavel Stehule <pavel.stehule@gmail.com>
Reviewed-by: Aleksander Alekseev <a.alekseev@postgrespro.ru>
Reviewed-by: Nikita Glukhov <n.gluhov@postgrespro.ru>
Diffstat (limited to 'contrib/jsonb_plperl/jsonb_plperlu.control')
-rw-r--r-- | contrib/jsonb_plperl/jsonb_plperlu.control | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/jsonb_plperl/jsonb_plperlu.control b/contrib/jsonb_plperl/jsonb_plperlu.control new file mode 100644 index 00000000000..946fc514c51 --- /dev/null +++ b/contrib/jsonb_plperl/jsonb_plperlu.control @@ -0,0 +1,6 @@ +# jsonb_plperl extension +comment = 'transform between jsonb and plperlu' +default_version = '1.0' +module_pathname = '$libdir/jsonb_plperl' +relocatable = true +requires = 'plperlu' |