tds-fdw / tds_fdw

A PostgreSQL foreign data wrapper to connect to TDS databases (Sybase and Microsoft SQL Server)
Other
379 stars 102 forks source link

JOIN pushdown support #27

Open davidfetter opened 9 years ago

davidfetter commented 9 years ago

This is a 9.5+ feature, but it can save a lot of time and hassle.

http://www.postgresql.org/docs/devel/static/fdw-callbacks.html

GeoffMontee commented 9 years ago

Thanks for pointing out the new join push-down feature in 9.5, @davidfetter. I have occasionally read over the threads about this on the hackers list. I hope to get around to implementing this eventually.

Right now, where-clause push-down, column push-down (issue #20), and write support (issue #9) are higher priority, so I plan to work on those first.

davidfetter commented 9 years ago

Thanks for getting back to me on this. Your priority list makes a lot of sense. Thanks for making this project happen, @GeoffMontee.