mirror of
https://github.com/postgres/postgres.git
synced 2025-06-19 04:21:08 +03:00
config
contrib
adminpack
amcheck
auth_delay
auto_explain
bloom
bool_plperl
btree_gin
btree_gist
citext
cube
dblink
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore
hstore_plperl
hstore_plpython
intagg
intarray
isn
jsonb_plperl
jsonb_plpython
expected
sql
.gitignore
Makefile
jsonb_plpython.c
jsonb_plpython2u--1.0.sql
jsonb_plpython2u.control
jsonb_plpython3u--1.0.sql
jsonb_plpython3u.control
jsonb_plpythonu--1.0.sql
jsonb_plpythonu.control
lo
ltree
ltree_plpython
oid2name
old_snapshot
pageinspect
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm
pg_standby
pg_stat_statements
pg_surgery
pg_trgm
pg_visibility
pgcrypto
pgrowlocks
pgstattuple
postgres_fdw
seg
sepgsql
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo
xml2
Makefile
README
contrib-global.mk
doc
src
.dir-locals.el
.editorconfig
.gitattributes
.gitignore
COPYRIGHT
GNUmakefile.in
HISTORY
Makefile
README
README.git
aclocal.m4
configure
configure.ac
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>
7 lines
191 B
Plaintext
7 lines
191 B
Plaintext
# jsonb_plpython3u extension
|
|
comment = 'transform between jsonb and plpython3u'
|
|
default_version = '1.0'
|
|
module_pathname = '$libdir/jsonb_plpython3'
|
|
relocatable = true
|
|
requires = 'plpython3u'
|