mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 10:30:33 +03:00 
			
		
		
		
	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
		
	
	
		
			732 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			732 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| /* contrib/jsonb_plpython/jsonb_plpython2u--1.0.sql */
 | |
| 
 | |
| -- complain if script is sourced in psql, rather than via CREATE EXTENSION
 | |
| \echo Use "CREATE EXTENSION jsonb_plpython2u" to load this file. \quit
 | |
| 
 | |
| CREATE FUNCTION jsonb_to_plpython2(val internal) RETURNS internal
 | |
| LANGUAGE C STRICT IMMUTABLE
 | |
| AS 'MODULE_PATHNAME', 'jsonb_to_plpython';
 | |
| 
 | |
| CREATE FUNCTION plpython2_to_jsonb(val internal) RETURNS jsonb
 | |
| LANGUAGE C STRICT IMMUTABLE
 | |
| AS 'MODULE_PATHNAME', 'plpython_to_jsonb';
 | |
| 
 | |
| CREATE TRANSFORM FOR jsonb LANGUAGE plpython2u (
 | |
|     FROM SQL WITH FUNCTION jsonb_to_plpython2(internal),
 | |
|     TO SQL WITH FUNCTION plpython2_to_jsonb(internal)
 | |
| );
 | |
| 
 | |
| COMMENT ON TRANSFORM FOR jsonb LANGUAGE plpython2u IS 'transform between jsonb and Python';
 |