File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1+ 3.2:
2+ - add support for OFFSET/LIMIT (pull 82)
3+
143.1:
25 - add support for Python 3.13
36 - add support for pg18
Original file line number Diff line number Diff line change 3737 "release_status" : " stable" ,
3838 "generated_by" : " Lussier" ,
3939 "meta-spec" : {
40- "version" : " 3.1 " ,
40+ "version" : " 3.2 " ,
4141 "url" : " http://pgxn.org/meta/spec.txt"
4242 },
4343 "tags" : [
Original file line number Diff line number Diff line change 11comment = 'Multicorn2 Python3.9+ bindings for Postgres 14++ Foreign Data Wrapper'
2- default_version = '3.1 '
2+ default_version = '3.2 '
33module_pathname = '$libdir/multicorn'
44relocatable = true
Original file line number Diff line number Diff line change 1+ -- create wrapper with validator and handler
2+ CREATE OR REPLACE FUNCTION multicorn_validator (text [], oid )
3+ RETURNS bool
4+ AS ' MODULE_PATHNAME'
5+ LANGUAGE C STRICT;
6+
7+ CREATE OR REPLACE FUNCTION multicorn_handler ()
8+ RETURNS fdw_handler
9+ AS ' MODULE_PATHNAME'
10+ LANGUAGE C STRICT;
11+
12+ CREATE FOREIGN DATA WRAPPER multicorn
13+ VALIDATOR multicorn_validator HANDLER multicorn_handler;
You can’t perform that action at this time.
0 commit comments