mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
3f44e3db72
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>
20 lines
682 B
SQL
20 lines
682 B
SQL
/* contrib/jsonb_plpython/jsonb_plpythonu--1.0.sql */
|
|
|
|
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
|
|
\echo Use "CREATE EXTENSION jsonb_plpythonu" to load this file. \quit
|
|
|
|
CREATE FUNCTION jsonb_to_plpython(val internal) RETURNS internal
|
|
LANGUAGE C STRICT IMMUTABLE
|
|
AS 'MODULE_PATHNAME';
|
|
|
|
CREATE FUNCTION plpython_to_jsonb(val internal) RETURNS jsonb
|
|
LANGUAGE C STRICT IMMUTABLE
|
|
AS 'MODULE_PATHNAME';
|
|
|
|
CREATE TRANSFORM FOR jsonb LANGUAGE plpythonu (
|
|
FROM SQL WITH FUNCTION jsonb_to_plpython(internal),
|
|
TO SQL WITH FUNCTION plpython_to_jsonb(internal)
|
|
);
|
|
|
|
COMMENT ON TRANSFORM FOR jsonb LANGUAGE plpythonu IS 'transform between jsonb and Python';
|