Geoff Montee
Geoff Montee
I will try to prepare a new release soon. Thanks!
Thanks for the report! > Previously in 1.0.7 computed columns didn't require alias. > I just updated to 2.0 Alpha 1 and the foreign (MSSQL 2016) tables broke. I had...
If you rebuild tds_fdw with DEBUG defined, then it is a lot more verbose. You can see the symbol commented out here: https://github.com/tds-fdw/tds_fdw/blob/13bc873bba674248d221c6d9b560ff71b70f01e4/src/tds_fdw.c#L71
Hi @4321ip, Thanks for the PR! Unfortunately, I don't think that I can accept the PR, as it currently is. Here are some comments: * 8b76c8e has some code commented...
Hi @shirabez , Would you be able to enable core dumps, then reproduce the issue, and then extract the backtrace of the crash from the resulting core dump? Information on...
Thanks, @shirabez. That seems odd. It seems to be segfaulting when freeing the connection's query variable: https://github.com/tds-fdw/tds_fdw/blob/v2.0.1/src/tds_fdw.c#L1929
This looks like issue #73. Please build the current master branch instead of the 2.0.0 release to avoid this problem.
It looks like this affects both `pg_cancel_backend()` and `pg_terminate_backend()`. ``` postgres=# SELECT pid, state, query FROM pg_stat_activity; pid | state | query -------+--------+------------------------------------------------- 7245 | active | SELECT * FROM...
It looks like a similar problem was recently fixed in postgres_fdw: https://github.com/postgres/postgres/commit/f039eaac7131ef2a4cf63a10cf98486f8bcd09d2
The control file is installed to the ``$libdir`` for the PostgreSQL installation: ``` module_pathname = '$libdir/tds_fdw' ``` https://github.com/tds-fdw/tds_fdw/blob/master/tds_fdw.control#L20 If your control file is being installed to the ``$libdir`` for PostgreSQL...