1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
1.0.4:
- Add support for upcoming AFTER TRIGGERs on foreign tables.
- Fix reference counting bug in messages
- Add indivual options for sqlalchemy fdw
- Fix bugs with refcounting
- Fix bug with unary operator
1.0.3:
- Fix bugs with types reflection in sqlalchemyfdw (Thanks to naoshika for
reporting it)
- Fix bug regarding ARRAY detection
- Small cleanups in Py_None reference counting
- Better guard against errors during fdw initialization
1.0.2:
- Fix bug when an exception occurs during iteration (Thanks to johnmudd for
reporting it)
- Add missing PYTHON_LDFLAGS when compiling with PYTHON_OVERRIDE (Thanks to
frensley for reporting it)
1.0.1:
- Use rollback/commit hooks on 9.2 too.
1.0.0:
- 9.3 writable API support
- Python3 experimental support
- Local evaluation of the right side of any "VAR OPERATOR EXPR" expressions.
1.0.0beta1:
- Fix many many memory related bugs
- Add gcfdw to help debugging python reference counting bugs.
- Let the structuredfs work with file-like objects.
0.9.2.1:
- Fix bug in log_to_postgres utility function, leading to SIGABRT from
python.
0.9.2:
- Move to PG 9.2 fdw API.
- Add support to declared parameterized paths
0.9.1
- Improvements to the imap fdw
- last supported version with pg 9.1.
0.0.9
- Break backwards compatibility: the column definition to the foreign data
wrapper constructor is now a dictionary of column names to their types.
- Add python2.6 compatibility
- Add sqlalchemy foreign data wrapper
- Remove sqlite foreign data wrapper
0.0.8
- Added minimal documentation in the doc folder
0.0.7
- Fix bug with 64bits platform on text and bytea types
0.0.6
- Fix operand switching, replacing the operator by its commutator
- Removed ANY, CONTAINS, IN support for a more general approach
- Fix many bugs in imapfdw
0.0.5
- Fix bug on Postgresql exceptions management
- Replaced imaplib by imapclient for better server compatibility
|