mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
20 lines
646 B
MySQL
20 lines
646 B
MySQL
|
-- make sure the prerequisite libraries are loaded
|
||
|
DO '1' LANGUAGE plpython2u;
|
||
|
SELECT NULL::hstore;
|
||
|
|
||
|
|
||
|
CREATE FUNCTION hstore_to_plpython2(val internal) RETURNS internal
|
||
|
LANGUAGE C STRICT IMMUTABLE
|
||
|
AS 'MODULE_PATHNAME', 'hstore_to_plpython';
|
||
|
|
||
|
CREATE FUNCTION plpython2_to_hstore(val internal) RETURNS hstore
|
||
|
LANGUAGE C STRICT IMMUTABLE
|
||
|
AS 'MODULE_PATHNAME', 'plpython_to_hstore';
|
||
|
|
||
|
CREATE TRANSFORM FOR hstore LANGUAGE plpython2u (
|
||
|
FROM SQL WITH FUNCTION hstore_to_plpython2(internal),
|
||
|
TO SQL WITH FUNCTION plpython2_to_hstore(internal)
|
||
|
);
|
||
|
|
||
|
COMMENT ON TRANSFORM FOR hstore LANGUAGE plpython2u IS 'transform between hstore and Python dict';
|