Skip to content

Commit b187b18

Browse files
committed
bump dev from 3.1 to 3.2
1 parent c47647b commit b187b18

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
3.2:
2+
- add support for OFFSET/LIMIT (pull 82)
3+
14
3.1:
25
- add support for Python 3.13
36
- add support for pg18

META.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
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": [

multicorn.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
comment = 'Multicorn2 Python3.9+ bindings for Postgres 14++ Foreign Data Wrapper'
2-
default_version = '3.1'
2+
default_version = '3.2'
33
module_pathname = '$libdir/multicorn'
44
relocatable = true

sql/multicorn--3.2.sql

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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;

0 commit comments

Comments
 (0)