tds_fdw-1.0.4
Today, I am releasing version 1.0.4 of tds_fdw, a TDS foreign data wrapper. It can be used to connect to Microsoft SQL Server and Sybase databases. This should work on PostgreSQL 9.1+.
New in this version:
- Added support for PostgreSQL 9.5. See issue #33. Thanks to GitHub user @mc-soi for this patch!
- Fixed several memory leaks. See issue #29.
- Implemented a special conversion for the
DATETIME
type, so that it can be converted into PostgreSQL'stimestamp
type without tinkering with the system's locale settings. See issues #28, #21, and #13. - Added some variables that provide a way to write
tds_fdw
memory usage to the PostgreSQL error log for diagnostic purposes. These variables are calledtds_fdw.show_before_row_memory_stats
,tds_fdw.show_after_row_memory_stats
,tds_fdw.show_finished_memory_stats
.
This version does not support write operations, where push-downs, column push-downs, or join push-downs.