mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	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>
		
			
				
	
	
		
			20 lines
		
	
	
		
			658 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			658 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
/* contrib/jsonb_plperl/jsonb_plperl--1.0.sql */
 | 
						|
 | 
						|
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
 | 
						|
\echo Use "CREATE EXTENSION jsonb_plperl" to load this file. \quit
 | 
						|
 | 
						|
CREATE FUNCTION jsonb_to_plperl(val internal) RETURNS internal
 | 
						|
LANGUAGE C STRICT IMMUTABLE
 | 
						|
AS 'MODULE_PATHNAME';
 | 
						|
 | 
						|
CREATE FUNCTION plperl_to_jsonb(val internal) RETURNS jsonb
 | 
						|
LANGUAGE C STRICT IMMUTABLE
 | 
						|
AS 'MODULE_PATHNAME';
 | 
						|
 | 
						|
CREATE TRANSFORM FOR jsonb LANGUAGE plperl (
 | 
						|
    FROM SQL WITH FUNCTION jsonb_to_plperl(internal),
 | 
						|
    TO SQL WITH FUNCTION plperl_to_jsonb(internal)
 | 
						|
);
 | 
						|
 | 
						|
COMMENT ON TRANSFORM FOR jsonb LANGUAGE plperl IS 'transform between jsonb and Perl';
 |