Skip to content

Releases: credativ/informix_fdw

Support PostgreSQL 13

24 Sep 11:57
Compare
Choose a tag to compare

Support release for PostgreSQL 13.

Support PostgreSQL 12

20 Jan 14:13
Compare
Choose a tag to compare
  • Support PostgreSQL 12

  • Fix wrong spelling in internal usage of DBMONEY.
    The Informix documentation states that DB_MONEY is the wrong name, instead DBMONEY without the underline is correct.

  • Fix handling of BIGSERIAL and variable length character types.
    Since PostgreSQL 12 it is necessary to support short varlena headers again. We can't rely on 4 byte headers anymore (not sure if that was right from the beginning)
    BIGSERIAL types are different from SERIAL8, which was an oversight in the original implementation.
    See commit 9ca46de for more details.

Release 0.5.1

24 Jan 10:23
Compare
Choose a tag to compare

Fixed bugs in this release:

  • Call datatype input functions of varlena types with its correct signature (fix by novakka4096)
  • Better handling when reading datums from tuple slots. The former code will have problems
    when reading virtual tuples, which this fix corrects. (code by knovak)

Improvements/Code:

  • Improve/fix support for older PostgreSQL releases

Support for PostgreSQL 11.

23 Aug 12:42
Compare
Choose a tag to compare

Support PostgreSQL 11.

This release is a support release for the upcoming new PostgreSQL major version.

Users having PostgreSQL 9.3 in production are advised to make sure they rebuild
the Informix FDW when updating from a version earlier than PostgreSQL 9.3.19.

Fix PostgreSQL DATE to Informix DATE datatype conversion

12 Jan 12:40
Compare
Choose a tag to compare

This bugfix release fixes a bug in PostgreSQL DATE to Informix DATE data type conversion routines, which affected DML commands with INSERT or UPDATE.

Support PostgreSQL 9.5

08 Jan 15:22
Compare
Choose a tag to compare

Release 0.3.0 officially supports the new PostgreSQL 9.5 release and fixes various bugs. Users of older version are also encouraged to update, since serious issues with FLOAT/DOUBLE and DATE/DATETIME datatypes are fixed.