diff --git a/CHANGELOG b/CHANGELOG index f444e5e80..09b71fe54 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +1.3.3: + - Add compatibility with PostgreSQL 9.6 + - Fix bug with typecasting of params 1.3.2: - Fixes invalid sizes in makeConst calls. (thanks to Dickson S. Guedes for the report, github user rastkok for the fix) diff --git a/multicorn.control b/multicorn.control index 29b1ce4df..74c81ee3d 100755 --- a/multicorn.control +++ b/multicorn.control @@ -1,4 +1,4 @@ comment = 'Multicorn Python bindings for Postgres 9.2.* Foreign Data Wrapper' -default_version = '1.3.2' +default_version = '1.3.3' module_pathname = '$libdir/multicorn' relocatable = true diff --git a/python/multicorn/__init__.py b/python/multicorn/__init__.py index baf0dda1d..72d8ebb75 100755 --- a/python/multicorn/__init__.py +++ b/python/multicorn/__init__.py @@ -140,6 +140,10 @@ def __hash__(self): return hash((self.field_name, self.operator, self.value)) + + + + class ForeignDataWrapper(object): """Base class for all foreign data wrapper instances.